summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.py b/config.py
new file mode 100644
index 0000000..b44a2ad
--- /dev/null
+++ b/config.py
@@ -0,0 +1,10 @@
+config = {
+ 'localport': 4345, # the port SnapDB runs on
+ # MongoDB configuration comes below
+ 'host': 'localhost',
+ 'port': 27017,
+ 'database': 'snapmesh',
+ 'collection': 'snapmesh',
+ 'username': 'snapmesh',
+ 'password': 'yourpassword'
+ }