nfp_sites/config/config.default.json

44 lines
845 B
JSON
Raw Normal View History

2019-02-19 11:34:52 +00:00
{
"NODE_ENV": "development",
"server": {
"port": 4030,
"host": "0.0.0.0"
},
"knex": {
"client": "pg",
"connection": {
"host" : "127.0.0.1",
"user" : "postgres",
"password" : "postgres",
"database" : "nfpmoe"
},
"migrations": {
}
},
"bunyan": {
"name": "nfpmoe",
"streams": [{
"stream": "process.stdout",
"level": "debug"
}
]
},
"frontend": {
"url": "http://localhost:8080"
},
"jwt": {
"secret": "this-is-my-secret",
"options": {
"expiresIn": 604800
}
},
2019-02-20 16:10:37 +00:00
"googleid": "1076074914074-3no1difo1jq3dfug3glfb25pn1t8idud.apps.googleusercontent.com",
2019-02-19 11:34:52 +00:00
"sessionsecret": "this-is-session-secret-lol",
"bcrypt": 5,
"fileSize": 524288000,
"upload": {
"name": "nfpmoe-dev",
2019-02-22 14:53:43 +00:00
"secret": "nfpmoe-dev"
2019-02-19 11:34:52 +00:00
}
}