diff options
Diffstat (limited to '')
-rw-r--r-- | config.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,4 +2,8 @@ from os import path APP_DIR = path.dirname(__file__) -DATABASE = '%s' % path.join(APP_DIR, 'khanindexer.db') +DB = "khanindexer" +DB_HOST = "127.0.0.1" +DB_PORT = "5432" +DB_USER = "root" +DB_PASS = "root" |