Stan Blog

學習過程中的一些記錄

[Rails] config.x 自定義 configuration

Rails 4.2 後 , 可以使用 config.x 自定義一些配置

官方範例

搭配 config_for 範例 application.yml 設定如下

# config/application.yml
default: &DEFAULT
  first: "hello"
  second: "world"

development:
  <<: *DEFAULT

production:
  <<: *DEFAULT

2018-08-21 00 27 40

Comments

comments powered by Disqus