Sha256: c36e5e4f2b60b7ab1c8bc8522e69ee207346668eb2eeb390072c8d0d49eca0b2

Contents?: true

Size: 1.64 KB

Versions: 1

Compression:

Stored size: 1.64 KB

Contents

require File.expand_path('../boot', __FILE__)

require 'wagn/all'

module <%= app_const_base %>
  class Application < Wagn::Application
    
    # Wagn inherits Rails configuration options.  See http://guides.rubyonrails.org/configuring.html

    config.recaptcha_public_key  = '6LdhRssSAAAAAFfLt1Wkw43hoaA8RTIgso9-tvtc'
    config.recaptcha_private_key = '6LdhRssSAAAAAGwzl069pJQBdmzCZigm1nV-dmqK'
    # config.recaptcha_proxy = ...
    #
    # IMPORTANT: please be sure to register for your own recaptcha keys before deploying a live site
    # It's quick and easy.  Just follow instructions at https://www.google.com/recaptcha/admin/create
    #
    # The below keys are fine for testing but should not be used in production sites.
        
    # config.read_only = true
    # defaults to false
    # disallows creating, updating, and deleting cards.

    # config.cache_store = :file_store, 'tmp/cache'
    # determines caching mechanism.  options include: file_store, memory_store, mem_cache_store, dalli_store...
    #
    # for production, we highly recommend memcache
    # here's a sample configuration for use with the dalli gem
    # config.cache_store = :dalli_store, []

    # config.paths['files'] = 'files'
    # where uploaded files are actually stored. (eg Image and File cards)

    # config.paths['local-mod'] = 'mod'
    # where mods are stored

    # config.allow_inline_styles = false
    # don't strip style attributes (not recommended)
        
    # config.override_host = nil
    # don't autodetect host (example.com) from web requests

    # config.override_protocol = nil
    # don't autodetect protocol (http/https) from web requests


  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wagn-1.13.0 lib/wagn/generators/wagn/templates/config/application.rb