Sha256: 67104ea7f472120f35b9ebff38ce8f09eab47b6f147fcd6f100c368aba124b92
Contents?: true
Size: 1.14 KB
Versions: 8
Compression:
Stored size: 1.14 KB
Contents
# 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 `rails 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: secret_key_base: <%= SecureRandom.hex(64) %> test: secret_key_base: <%= SecureRandom.hex(64) %> # Do not keep production secrets in the repository, # instead read values from the environment. production: secret_key_base: <%%= ENV["SECRET_KEY_BASE"] %> sendgrid: <%%= !ENV["SENDGRID_USERNAME"].blank? %> smtp_username: <%%= ENV["SMTP_USERNAME"] || ENV["SENDGRID_USERNAME"] %> smtp_password: <%%= ENV["SMTP_PASSWORD"] || ENV["SENDGRID_PASSWORD"] %> smtp_address: <%%= ENV["SMTP_ADDRESS"] || "smtp.sendgrid.net" %> smtp_domain: <%%= ENV["SMTP_DOMAIN"] || "heroku.com" %> smtp_port: "587" smtp_starttls_auto: true smtp_authentication: "plain"
Version data entries
8 entries across 8 versions & 1 rubygems