Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Figaro等Gem和Heroku等服务允许使用环境变量配置运行时 Rails 应用程序。
如何验证应用程序是否需要env var,如果不存在则无法启动?
您可以将这样的内容放入初始化程序中:
# config/initializers/check_env.rb fail "MY_ENV not defined" unless ENV["MY_VAR"]