I will be submitting another PR to resolve this if you like, basically in the api/services/* files you do something like this.. this can be applied for things like db name, user, host and password.
const _ = require('lodash')
const config = _.merge(require('../../config/services/mailer'), require('../../config/local'));
and create a config/local.js with something like this....
"use strict";
module.exports = {
services: {
cipher: {},
hash: {},
image: {},
location: {},
mailer: {},
payment: {},
pusher: {},
sms: {},
social: {},
storage: {}
}
}
I will be submitting another PR to resolve this if you like, basically in the api/services/* files you do something like this.. this can be applied for things like db name, user, host and password.
and create a config/local.js with something like this....