36 lines
1.5 KiB
YAML
36 lines
1.5 KiB
YAML
# Be sure to restart your server when you modify this file.
|
|
|
|
# Your secret key is used for verifying the integrity of signed cookies.
|
|
# If you change this key, all old signed cookies will become invalid!
|
|
|
|
# Make sure the secret is at least 30 characters and all random,
|
|
# no regular words or you'll be exposed to dictionary attacks.
|
|
# You can use `rake secret` to generate a secure secret key.
|
|
|
|
# Make sure the secrets in this file are kept private
|
|
# if you're sharing your code publicly.
|
|
|
|
development:
|
|
admin_name: First User
|
|
admin_email: user@example.com
|
|
admin_password: changeme
|
|
email_provider_username: <%= ENV["GMAIL_USERNAME"] %>
|
|
email_provider_password: <%= ENV["GMAIL_PASSWORD"] %>
|
|
domain_name: example.com
|
|
secret_key_base: 31b41a9c65cd195a147284c28603ad690792213a13157935f4de1fb232ce3283a44ec52f4d5e9a3c0df041e4b19536d739246616d26d147081dc1c906288771d
|
|
|
|
test:
|
|
domain_name: example.com
|
|
secret_key_base: b293e2494b3116d86fa96a2a68a5a758c0c0c0d78799e7e948f8beea5c6907c7f4fbe299fa4645bdda6b9a61ba8a73af85a97df09167e2976c1eea55116fb4b6
|
|
|
|
# Do not keep production secrets in the repository,
|
|
# instead read values from the environment.
|
|
production:
|
|
admin_name: <%= ENV["ADMIN_NAME"] %>
|
|
admin_email: <%= ENV["ADMIN_EMAIL"] %>
|
|
admin_password: <%= ENV["ADMIN_PASSWORD"] %>
|
|
email_provider_username: <%= ENV["GMAIL_USERNAME"] %>
|
|
email_provider_password: <%= ENV["GMAIL_PASSWORD"] %>
|
|
domain_name: <%= ENV["DOMAIN_NAME"] %>
|
|
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|