0
我用來配置帆影連接到我的配置/ ENV/development.js和配置/ ENV/production.js這樣的數據庫:帆數據庫配置
module.exports = {
connections: {
'postgres': {
host: 'localhost',
user: 'myUser',
password: 'myPassword',
database: 'myDatabase'
}
}
};
,如果我想什麼用環境變量替換我的環境配置文件,如here?
我希望使用這些變量,但它不工作:
- sails__connections_postgres_host
- sails__connections_postgres_user
- sails__connections_postgres_password
- sails__connections_postgres_database
如何想出來? –