feat: heroku compatibility

This commit is contained in:
Nick
2019-06-01 21:38:21 -04:00
parent e49cb03882
commit 9f58a08fcb
5 changed files with 9 additions and 24 deletions

View File

@@ -48,7 +48,7 @@ module.exports = {
appconfig = _.defaultsDeep(appconfig, appdata.defaults.config)
if (appconfig.port < 1) {
if (appconfig.port < 1 || process.env.HEROKU) {
appconfig.port = process.env.PORT || 80
}

View File

@@ -24,7 +24,7 @@ module.exports = {
let self = this
let dbClient = null
let dbConfig = (!_.isEmpty(process.env.WIKI_DB_CONNSTR)) ? process.env.WIKI_DB_CONNSTR : {
let dbConfig = (!_.isEmpty(process.env.DATABASE_URL)) ? process.env.DATABASE_URL : {
host: WIKI.config.db.host,
user: WIKI.config.db.user,
password: WIKI.config.db.pass,