Created
November 17, 2011 19:59
-
-
Save rafaelcgo/1374319 to your computer and use it in GitHub Desktop.
Heroku.yml config for Heroku_san Gem
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
production: | |
app: xxxxxxxxx | |
stack: bamboo-ree-1.8.7 | |
config: | |
BUNDLE_WITHOUT: "development:test" | |
GOOGLE_ANALYTICS: "xxxxxxxxxxxxxx" | |
PUSHER_SOCKET_URL: "xxxxxxxxxxxxxx" | |
PUSHER_URL: "xxxxxxxxxxxxxx" | |
RACK_ENV: "production" | |
WEBSOLR_URL: "xxxxxxxxxxxxxx" | |
s3_bucket: "xxxxxxxxxxxxxx" | |
staging: | |
app: xxxxxxxxx-staging | |
stack: bamboo-ree-1.8.7 | |
config: &default | |
BUNDLE_WITHOUT: "development:test" | |
GOOGLE_ANALYTICS: "xxxxxxxxxxxxxx" | |
PUSHER_SOCKET_URL: "xxxxxxxxxxxxxx" | |
PUSHER_URL: "xxxxxxxxxxxxxx" | |
RACK_ENV: "staging" | |
WEBSOLR_URL: "xxxxxxxxxxxxxx" | |
s3_bucket: "xxxxxxxxxxxxxx" | |
development: | |
app: xxxxxxxxx-development | |
stack: bamboo-ree-1.8.7 | |
config: | |
BUNDLE_WITHOUT: "development:test" | |
GOOGLE_ANALYTICS: "xxxxxxxxxxxxxx" | |
PUSHER_SOCKET_URL: "xxxxxxxxxxxxxx" | |
PUSHER_URL: "xxxxxxxxxxxxxx" | |
RACK_ENV: "development" | |
WEBSOLR_URL: "xxxxxxxxxxxxxx" | |
s3_bucket: "xxxxxxxxxxxxxx" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment