34 lines
1.3 KiB
YAML
34 lines
1.3 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.
|
||
|
|
||
|
defaults: &defaults
|
||
|
twilio_sid: <%= ENV["twilio_sid"] %>
|
||
|
twilio_token: <%= ENV["twilio_token"] %>
|
||
|
twilio_number: <%= ENV["twilio_number"] %>
|
||
|
mysql_host: <%= ENV["mysql_host"] %>
|
||
|
mysql_usr: <%= ENV["mysql_usr"] %>
|
||
|
mysql_pwd: <%= ENV["mysql_pwd"] %>
|
||
|
|
||
|
development:
|
||
|
<<: *defaults
|
||
|
secret_key_base: f97bd71064db7216f6c615c67cdb804479bc784caab9ec0695f66a9fe81f1a261036bbc46a7bb32aa85c525f5cc8204f440a58333714a2a1018a68a9b3d970ca
|
||
|
|
||
|
test:
|
||
|
<<: *defaults
|
||
|
secret_key_base: ed3627e7b50494de1ece0bf7b95f9a8eed245a2ef1da022f3bb43c29d85e2116e6fe7a930208cdd0333df24b94579c1b193421fe74fa033b85b08202cb2a50d6
|
||
|
|
||
|
# Do not keep production secrets in the repository,
|
||
|
# instead read values from the environment.
|
||
|
production:
|
||
|
<<: *defaults
|
||
|
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|