1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00

Make test environment use filesystem for photos.

This commit is contained in:
Dan Barber 2014-03-08 08:26:01 +00:00
parent 16082ade2a
commit 0c4a913f5d

View File

@ -9,11 +9,17 @@ Dragonfly.app.configure do
url_format "/media/:job/:name"
datastore :s3,
bucket_name: ENV['AWS_BUCKET'],
access_key_id: ENV['AWS_KEY'],
secret_access_key: ENV['AWS_SECRET'],
region: 'eu-west-1'
if Rails.env.test?
datastore :file,
root_path: Rails.root.join('public/system/dragonfly', Rails.env),
server_root: Rails.root.join('public')
else
datastore :s3,
bucket_name: ENV['AWS_BUCKET'],
access_key_id: ENV['AWS_KEY'],
secret_access_key: ENV['AWS_SECRET'],
region: 'eu-west-1'
end
processor :preview do |content| content.process! :thumb, '600x600' end