0
0
Fork 0

Adding optional S3, fail-mastodon

This commit is contained in:
Eugen Rochko 2016-11-06 18:35:46 +01:00
parent 93212bc2c4
commit 3ab193bc3f
5 changed files with 42 additions and 48 deletions

View file

@ -0,0 +1,10 @@
if ENV['S3_ENABLED'] == 'true'
Paperclip::Attachment.default_options[:storage] = :s3
Paperclip::Attachment.default_options[:s3_credentials] = {
bucket: ENV.fetch('S3_BUCKET'),
access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID'),
secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY'),
s3_region: ENV.fetch('S3_REGION')
}
end