adding new default config.js file, removed config from repo

v1.18.x
Julian Lam 12 years ago
parent 19f9a48a8c
commit bdbbed18ae

3
.gitignore vendored

@ -5,4 +5,5 @@
npm-debug.log
node_modules/
sftp-config.json
public/config.json
public/config.json
config.js

@ -0,0 +1,11 @@
var config = {
"url": "http://localhost:4567/",
"port": 4567,
"mailer": {
host: 'localhost',
port: '25',
from: 'mailer@localhost.lan'
}
}
module.exports = config;

@ -1,11 +0,0 @@
var config = {
"url": "http://designcreateplay.com:4567/",
"port": 4567,
"mailer": {
host: 'localhost',
port: '25',
from: 'mailer@designcreateplay.com'
}
}
module.exports = config;
Loading…
Cancel
Save