加载 YAML 应用程序配置文件的最佳位置在哪里?

发布于 2024-12-02 02:26:18 字数 284 浏览 1 评论 0原文

我已经为 Rails 3.1 应用程序设置了应用程序配置,如 Ryan Bates 此处所述。

问题是我想使用环境文件中的配置作为 ActionMailer 的用户名/密码,但 Ryan 建议从初始值设定项加载配置,并且它们似乎包含在environment.rb 之后。加载配置文件的最佳位置在哪里,以便整个 Rails 应用程序可以访问它?

谢谢

I have setup my application configuration for my rails 3.1 application as described here by Ryan Bates.

Problem is I want to use the config in my environment file for username/password for ActionMailer, but Ryan suggests loading the config from an initializer, and they seem to get included after environment.rb. Where is the best place to load the configuration file so it can be accessed by the whole rails application?

Thanks

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

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

发布评论

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

评论(1

泅人 2024-12-09 02:26:18

在这种情况下,该代码应该作为预初始化程序进入。 行之前

从 Rails 3 开始,所有预初始化代码都需要位于 application.rb 的顶部附近,就在 require 'rails/all' application.rb:

require File.expand_path('../boot', __FILE__)  

# load app_config.yml  
require 'yaml'  
APP_CONFIG = YAML.load(File.read(File.expand_path('../app_config.yml', __FILE__)))  

require 'rails/all'

In that case, this code should go in as a pre-initializer. As of Rails 3, all pre-initialization code needs to go near the top of application.rb, just before the line require 'rails/all'

application.rb:

require File.expand_path('../boot', __FILE__)  

# load app_config.yml  
require 'yaml'  
APP_CONFIG = YAML.load(File.read(File.expand_path('../app_config.yml', __FILE__)))  

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