summaryrefslogtreecommitdiff
path: root/cfg.py
diff options
context:
space:
mode:
authorJames Vasile <james@hackervisions.org>2011-12-15 15:40:06 -0500
committerJames Vasile <james@jamesvasile.com>2012-02-19 15:07:14 -0500
commit73eb55b232fca16f17638bbb73b641fa8859fc8b (patch)
tree873db1415e0ca069cb6080438c3c712ac376ad8c /cfg.py
parente4eb2b463c3127bcb1dfc0c1790ce6629617f2c4 (diff)
cfg.py shouldn't overwrite local config on update
Diffstat (limited to 'cfg.py')
-rw-r--r--cfg.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/cfg.py b/cfg.py
deleted file mode 100644
index 0f98be0..0000000
--- a/cfg.py
+++ /dev/null
@@ -1,17 +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")
-
-product_name = "Plinth"
-box_name = "Freedom Plug"
-
-html_root = None
-main_menu = Menu()
-