aboutsummaryrefslogtreecommitdiff
path: root/source/conf.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-05-03 21:49:52 +0200
committercedricbonhomme <devnull@localhost>2012-05-03 21:49:52 +0200
commit10c8465e4ff3914b1d7f444b743ff1d3c4911d98 (patch)
tree34d6b833b17bb24f6050d42b2b6769025dbe6af2 /source/conf.py
parentTests detection of feed links in HTML page. (diff)
downloadnewspipe-10c8465e4ff3914b1d7f444b743ff1d3c4911d98.tar.gz
newspipe-10c8465e4ff3914b1d7f444b743ff1d3c4911d98.tar.bz2
newspipe-10c8465e4ff3914b1d7f444b743ff1d3c4911d98.zip
Distant MongoDB connection working (tested with AlwaysData).
Diffstat (limited to 'source/conf.py')
-rw-r--r--source/conf.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/conf.py b/source/conf.py
index 9f6724d5..726cf60d 100644
--- a/source/conf.py
+++ b/source/conf.py
@@ -39,8 +39,9 @@ path = os.path.abspath(".")
MONGODB_ADDRESS = config.get('MongoDB', 'address')
MONGODB_PORT = int(config.get('MongoDB', 'port'))
-#MONGODB_USER = config.get('MongoDB', 'user')
-#MONGODB_PASSWORD = config.get('MongoDB', 'password')
+MONGODB_DBNAME = config.get('MongoDB', 'dbname')
+MONGODB_USER = config.get('MongoDB', 'user')
+MONGODB_PASSWORD = config.get('MongoDB', 'password')
mail_from = config.get('mail','mail_from')
mail_to = config.get('mail','mail_to')
bgstack15