From 5aa7a680a906ada1221e46cf355842689e9dbf1b Mon Sep 17 00:00:00 2001 From: James Vasile Date: Thu, 7 Feb 2013 11:35:32 -0500 Subject: [PATCH] no need for this with the new cfg parsing --- cfg.sample.py | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 cfg.sample.py diff --git a/cfg.sample.py b/cfg.sample.py deleted file mode 100644 index 8521ca653..000000000 --- a/cfg.sample.py +++ /dev/null @@ -1,23 +0,0 @@ -from menu import Menu -import os - -file_root = os.path.dirname(os.path.realpath(__file__)) -data_dir = os.path.join(file_root, "data") -store_file = os.path.join(data_dir, "store.sqlite3") -user_db = os.path.join(data_dir, "users") -status_log_file = os.path.join(data_dir, "status.log") -access_log_file = os.path.join(data_dir, "access.log") -users_dir = os.path.join(data_dir, "users") -pidfile = os.path.join(data_dir, "pidfile.pid") - -product_name = "Plinth" -box_name = "FreedomBox" - -host = "127.0.0.1" -port = 8000 - -## Do not edit below this line ## -html_root = None -main_menu = Menu() -base_href = "" -