Created
July 15, 2010 17:09
-
-
Save xwmx/477217 to your computer and use it in GitHub Desktop.
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
defaults: &defaults | |
adapter: postgresql | |
encoding: utf8 | |
username: username | |
password: password | |
host: localhost | |
pool: 10 | |
development: | |
database: application_name_development | |
<<: *defaults | |
test: | |
database: application_name_test | |
<<: *defaults | |
production: | |
database: application_name_production | |
<<: *defaults |
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
development: | |
app_id: application id | |
api_key: application api key | |
secret: application secret key | |
test: | |
app_id: 123 | |
api_key: 456 | |
secret: 789 | |
staging: | |
app_id: application id | |
api_key: application api key | |
secret: application secret key |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment