ensl.org/config/secrets.yml

11 lines
388 B
YAML
Raw Normal View History

2020-04-11 12:44:57 +00:00
development:
secret_key_base: <%= ENV["APP_SECRET_KEY_BASE"] || SecureRandom.alphanumeric(32) %>
2020-04-11 12:57:37 +00:00
2020-04-11 12:44:57 +00:00
test:
secret_key_base: <%= ENV["APP_SECRET_KEY_BASE"] || SecureRandom.alphanumeric(32) %>
2020-04-11 12:57:37 +00:00
2020-04-11 12:44:57 +00:00
production:
secret_key_base: <%= ENV["APP_SECRET_KEY_BASE"] || SecureRandom.alphanumeric(32) %>
2020-04-11 12:57:37 +00:00
staging:
secret_key_base: <%= ENV["APP_SECRET_KEY_BASE"] || SecureRandom.alphanumeric(32) %>