Skip to content

Instantly share code, notes, and snippets.

@neotericdesign
Created December 1, 2010 15:47
Show Gist options
  • Select an option

  • Save neotericdesign/723661 to your computer and use it in GitHub Desktop.

Select an option

Save neotericdesign/723661 to your computer and use it in GitHub Desktop.
Example YML for amazon_s3 & refinery & heroku
login: &login
access_key_id: <%= ENV['S3_KEY'] %>
secret_access_key: <%= ENV['S3_SECRET'] %>
development:
bucket_name: bucket_name
<<: *login
distribution_domain: s3.amazonaws.com/bucket_name
test:
bucket_name: bucket_name
<<: *login
distribution_domain: s3.amazonaws.com/bucket_name
production:
bucket_name: bucket_name
<<: *login
distribution_domain: s3.amazonaws.com/bucket_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment