summaryrefslogtreecommitdiff
path: root/cfg.py
diff options
context:
space:
mode:
authorJames Vasile <james@hackervisions.org>2011-12-01 09:18:44 -0500
committerJames Vasile <james@jamesvasile.com>2012-02-19 15:07:13 -0500
commitd082538aeec1e43736d25e485cb90c6e6ef86228 (patch)
treea068b1ec3eeb0679e463d631b7d7a1918cec0fe8 /cfg.py
parent1bfcb608de1d4509cf552193970e4b632bc98753 (diff)
move to sqlite3 + json dict storage for users
Diffstat (limited to 'cfg.py')
-rw-r--r--cfg.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cfg.py b/cfg.py
index db237fc..0f98be0 100644
--- a/cfg.py
+++ b/cfg.py
@@ -4,6 +4,7 @@ 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")