After going through countless questions and tutorials I still cannot seem to get paperclip to upload the images to s3.
Here's the model code:
path = Rails.root.to_s + '/config/s3.yml'
has_attached_file :photo_1,
:styles => {
:thumb=> '100x100#',
:small => '400x400>' },
:storage => :s3,
:s3_credentials => path,
:path => '/:style/:id/:filename'
Here's my s3.yml:
development:
bucket:
access_key_id:
secret_access_key:
test:
bucket:
access_key_id:
secret_access_key:
production:
bucket:
access_key_id:
secret_access_key:
The path is correct but for some reason paperclip is still trying to upload the images locally instead of uploading them to amazon s3.
Anyone have an idea of what I might be missing?