Created
September 10, 2012 16:55
-
-
Save jsmestad/3692107 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 | |
| fog_provider: 'AWS' | |
| aws_access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] || '' %> | |
| aws_secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] || '' %> | |
| fog_directory: assets.cafewell.com | |
| # You may need to specify what region your storage bucket is in | |
| # fog_region: "eu-west-1" | |
| existing_remote_files: keep | |
| # To delete existing remote files. | |
| # existing_remote_files: delete | |
| # Automatically replace files with their equivalent gzip compressed version | |
| # gzip_compression = true | |
| # Fail silently. Useful for environments such as Heroku | |
| # fail_silently = true | |
| # manifest: true | |
| development: | |
| <<: *defaults | |
| test: | |
| <<: *defaults | |
| staging: | |
| <<: *defaults | |
| production: | |
| <<: *defaults | |
| review: | |
| <<: *defaults |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment