Skip to content

Commit

Permalink
commenting on config
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Ive committed Mar 25, 2012
1 parent a06730f commit 32c9f1e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
.DS_Store
test.js

conf/config.js
17 changes: 12 additions & 5 deletions conf/config.example.js
@@ -1,18 +1,25 @@
var config = {};

//Database config
config.db = {
host :'localhost',
host :'',
port :24891,
dbname :'',
collection:'',
dbname :'geodb',
collection:'postcode',
auth: {
username: '',
password: ''
password: '!'
}
};

//Http config
config.http = {
port:16156
}

//Importer config
config.importer = {
path: '/tmp/postcodes/'
path: '/tmp/postcodes/Data/'
}

module.exports = config;

0 comments on commit 32c9f1e

Please sign in to comment.