Heroku 上配置变量的最佳实践
Heroku 文档建议了一种管理配置变量的方法: http://devcenter.heroku.com/articles/ config-vars
我想这对于 API 密钥来说效果很好,但对于其他环境配置信息来说似乎很笨拙。
有没有任何建议或更好的方法来做到这一点?
谢谢
The Heroku docs suggest one way of managing config vars: http://devcenter.heroku.com/articles/config-vars
I guess this works well for API keys, but seems clunky for other environment config info.
Are there any recommendations or better ways of doing this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我从来没有发现它笨重 - 但使用 heroku 配置变量作为 API 密钥和我不想提交到 git 存储库的内容,以及相关环境 .rb 文件作为特定于每个环境的应用程序配置内容。
您始终可以 https://github.com/fastestforward/heroku_san 它可以让您在 yml 中设置配置变量可以针对应用程序运行以设置变量的文件,而无需通过 CLI 执行此操作
I haven't ever found it clunky - but use heroku config vars for API keys and stuff which I don't want committed into a git repo and the relevant environment .rb file for application config stuff specific to each environment.
You can always https://github.com/fastestforward/heroku_san which lets you set config vars in a yml file which can be run against an app to set the vars without having to do it via the CLI
figaro 是另一个帮助我们管理这些东西的宝石。
figaro is another gem which help us to manage this stuff.