nfp_sites/config/config.default.json

49 lines
960 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"
},
2019-10-01 03:45:44 +00:00
"CIRCLECI_VERSION": "circleci_version_number",
2019-02-19 11:34:52 +00:00
"knex": {
"client": "pg",
"connection": {
"host" : "127.0.0.1",
"user" : "postgres",
"password" : "postgres",
"database" : "nfpmoe"
},
2019-09-13 13:33:10 +00:00
"connectionslave": null,
2019-02-19 11:34:52 +00:00
"migrations": {
2019-09-13 13:33:10 +00:00
},
"acquireConnectionTimeout": 10000
2019-02-19 11:34:52 +00:00
},
"bunyan": {
"name": "nfpmoe",
"streams": [{
"stream": "process.stdout",
"level": "debug"
}
]
},
"frontend": {
2019-10-01 17:36:28 +00:00
"url": "http://beta01.nfp.moe"
2019-02-19 11:34:52 +00:00
},
"jwt": {
"secret": "this-is-my-secret",
"options": {
"expiresIn": 604800
}
},
"sessionsecret": "this-is-session-secret-lol",
"bcrypt": 5,
"fileSize": 524288000,
"upload": {
2021-01-04 10:19:59 +00:00
"baseurl": "https://cdn.nfp.is",
2019-09-13 13:33:10 +00:00
"port": "2111",
"host": "storage01.nfp.is",
2019-02-19 11:34:52 +00:00
"name": "nfpmoe-dev",
2019-02-22 14:53:43 +00:00
"secret": "nfpmoe-dev"
2019-02-19 11:34:52 +00:00
}
}