Created
September 1, 2013 11:53
-
-
Save karlosmid/6403979 to your computer and use it in GitHub Desktop.
example of application.yml that hold rails env variables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add account credentials and API keys here. | |
# See http://railsapps.github.io/rails-environment-variables.html | |
# This file should be listed in .gitignore to keep your settings secret! | |
# Each entry sets a local environment variable and overrides ENV variables in the Unix shell. | |
# For example, setting: | |
# GMAIL_USERNAME: Your_Gmail_Username | |
# makes 'Your_Gmail_Username' available as ENV["GMAIL_USERNAME"] | |
# Add application configuration variables here, as shown below. | |
# | |
GMAIL_USERNAME: Your_Username | |
GMAIL_PASSWORD: Your_Password | |
ADMIN_NAME: First User | |
ADMIN_EMAIL: [email protected] | |
ADMIN_PASSWORD: changeme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment