aboutsummaryrefslogtreecommitdiffstats
path: root/src/nodejs/config.json
diff options
context:
space:
mode:
authorMark Engel <mark.c.engel@gmail.com>2011-01-23 13:03:37 +0100
committerMark Engel <mark.c.engel@gmail.com>2011-01-23 13:03:37 +0100
commit30fb6b81a2eb73f78fb621079a2e4332fd53a31f (patch)
tree5e84d37491ec1d4bb8aff20e9768e775b06ec174 /src/nodejs/config.json
parent899e3223fe599deb295eaa4068dcb48ccb1f1f2c (diff)
downloadosm-xapi-30fb6b81a2eb73f78fb621079a2e4332fd53a31f.tar.gz
osm-xapi-30fb6b81a2eb73f78fb621079a2e4332fd53a31f.tar.xz
osm-xapi-30fb6b81a2eb73f78fb621079a2e4332fd53a31f.zip
config is now a real json file
update your custom configs!
Diffstat (limited to 'src/nodejs/config.json')
-rw-r--r--src/nodejs/config.json11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/nodejs/config.json b/src/nodejs/config.json
index be796a7..92b4484 100644
--- a/src/nodejs/config.json
+++ b/src/nodejs/config.json
@@ -1,4 +1,7 @@
-exports.connectionString = "pg://user:password@host/database";
-exports.host = 'localhost';
-exports.port = 8080;
-exports.logLevel = 'ERROR';
+{
+ "connectionString": "pg://user:password@host/database",
+ "host": "localhost",
+ "port": 8080,
+ "logLevel": "ERROR"
+}
+