我正在尝试将plaid gem集成到我的一个项目中。从它说的文档来配置它。
https://github.com/plaid/plaid-ruby
Plaid.config do |p|
p.customer_id = 'Plaid provided customer ID here'
p.secret = 'Plaid provided secret key here'
p.environment_location = 'URL for the development or production environment'
end
我的问题是我应该在哪个文件中使用此代码?它应该放在我的application.rb中吗? config.rb?只是想确保我遵循惯例。谢谢!
答案 0 :(得分:2)
您应该在config/initializers
目录中使用任何文件名创建此文件,例如plaid.rb
。
仅供参考:Using Initializer Files。