6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'lib/dragonfly/config/heroku.rb', line 6
def self.apply_configuration(app, bucket_name)
app.log.warn("""HEROKU CONFIGURATION IS NOW DEPRECATED - you should configure with the S3 Datastore directly, e.g.
c.datastore = Dragonfly::DataStorage::S3DataStore.new(
:bucket_name => '#{bucket_name}',
:access_key_id => 'XXX',
:secret_access_key => 'XXX'
)
""")
app.configure do |c|
c.datastore = DataStorage::S3DataStore.new
c.datastore.configure do |d|
d.bucket_name = bucket_name
d.access_key_id = ENV['S3_KEY'] || raise("ENV variable 'S3_KEY' needs to be set - use\n\theroku config:add S3_KEY=XXXXXXXXX")
d.secret_access_key = ENV['S3_SECRET'] || raise("ENV variable 'S3_SECRET' needs to be set - use\n\theroku config:add S3_SECRET=XXXXXXXXX")
end
end
end
|