Monday, 2 March 2015

AssetSync disabled in development

AssetSync.configure do |config|
config.fog_provider = 'AWS'
config.aws_access_key_id = ENV['AWS_ACCESS_KEY_ID']
config.aws_secret_access_key = ENV['AWS_SECRET_ACCESS_KEY']
# To use AWS reduced redundancy storage.
# config.aws_reduced_redundancy = true
config.fog_directory = ENV['FOG_DIRECTORY']
# Invalidate a file on a cdn after uploading files
# config.cdn_distribution_id = "12345"
# config.invalidate = ['file1.js']
# Increase upload performance by configuring your region
config.fog_region = 'eu-west-1'
#
# Don't delete files from the store
# config.existing_remote_files = "keep"
#
# Automatically replace files with their equivalent gzip compressed version
config.gzip_compression = true
# when you use RAILS_ENV=production rake assets:precompile
if ENV['LOCAL_MACHINE']
config.enabled = false
end
#
# Use the Rails generated 'manifest.yml' file to produce the list of files to
# upload instead of searching the assets directory.
# config.manifest = true
#
# Fail silently. Useful for environments such as Heroku
config.fail_silently = true
end if defined? AssetSync
if ENV["RAILS_GROUPS"] == 'assets'
Excon.defaults[:nonblock] = false
end
view raw gistfile1.rb hosted with ❤ by GitHub

No comments:

Post a Comment