Skip to content

Instantly share code, notes, and snippets.

@assembler
Created April 18, 2012 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save assembler/2412286 to your computer and use it in GitHub Desktop.
Save assembler/2412286 to your computer and use it in GitHub Desktop.
default_settings: &default_settings
# whether to override image_tag helper with cl_image_tag
enhance_image_tag: false
# ...
static_image_support: false
development:
<<: *default_settings
cloud_name: "xxx"
api_key: "xxx"
api_secret: "xxx"
secure_distribution: "xxx"
private_cdn: "xxx"
test:
<<: *default_settings
cloud_name: "xxx"
api_key: "xxx"
api_secret: "xxx"
secure_distribution: "xxx"
private_cdn: "xxx"
production:
<<: *default_settings
cloud_name: <%= ENV["CLOUDINARY_CLOUD_NAME"] %>
api_key: <%= ENV["CLOUDINARY_API_KEY"] %>
api_secret: <%= ENV["CLOUDINARY_API_SECRET"] %>
secure_distribution: <%= ENV["CLOUDINARY_SECURE_DISTRIBUTION"] %>
private_cdn: <%= ENV["CLOUDINARY_PRIVATE_CDN"] %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment