Commit 3ea87d15

mo khan <mo@mokhan.ca>
2015-01-25 05:33:30
add asset sync initializer.
1 parent 2ef00a4
Changed files (1)
config
initializers
config/initializers/asset_sync.rb
@@ -0,0 +1,28 @@
+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
+
+  # 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