在 Rails 中设置环境变量

发布于 2024-09-29 14:53:56 字数 167 浏览 1 评论 0原文

我正在尝试使我的项目成为 OSS,并且我想从配置中删除所有敏感信息。我正在尝试使用 ENV['DB_PASS'] = mypassword。我在哪里设置这个?我已经在 .bashrc 文件中尝试过 export DB_PASS=mypassword 。但这是行不通的。

I'm trying to make my project OSS, and I'd like to remove any sensitive info from the configs. I'm trying to have ENV['DB_PASS'] = mypassword. Where would I set this? I've tried export DB_PASS=mypassword in my .bashrc file. But that's not working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半世晨晓 2024-10-06 14:53:56

您确定导出不起作用吗?您是否尝试过echo $DB_PASS? (此外,对 .bashrc 的更改直到您下次登录时才会生效。)

处理此问题的更常见方法是创建一个不在存储库中跟踪的单独配置文件,然后提供 config.sample 文件演示了常见的配置选项,但带有虚拟值。

Are you sure export isn't working? Have you tried echo $DB_PASS? (Also, changes to .bashrc won't take effect until the next time you log in.)

A more common way to handle this problem is to create a separate config file that is not tracked in your repository, and then provide a config.sample file demonstrating the common configuration options but with dummy values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文