secrets.yml 271 B

123456789101112131415
  1. ---
  2. development: &default
  3. test:
  4. staging:
  5. <<: *default
  6. secret_key_base: <%= ENV['SECRET_KEY_BASE'] %>
  7. secret_token: <%= ENV['SECRET_TOKEN'] %>
  8. production:
  9. <<: *default
  10. secret_key_base: <%= ENV['SECRET_KEY_BASE'] %>
  11. secret_token: <%= ENV['SECRET_TOKEN'] %>