Created
January 25, 2012 14:40
-
-
Save knicklabs/1676568 to your computer and use it in GitHub Desktop.
CarrierWave Configuration
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
# The current configuration for CarrierWave | |
CarrierWave.configure do |config| | |
config.storage = :s3 | |
config.s3_access_policy = :public_read | |
config.s3_access_key_id = S3_CONFIG['access_key_id'] | |
config.s3_secret_access_key = S3_CONFIG['secret_access_key'] | |
config.s3_bucket = S3_CONFIG['bucket'] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment