2010-06-12 01:13:58 +00:00
|
|
|
Locomotive.configure do |config|
|
2011-04-04 00:03:23 +00:00
|
|
|
|
|
|
|
# A single locomotive instance can serve one single site or many.
|
|
|
|
# If you want to run many different websites, you will have to specify
|
|
|
|
# your own domain name (ex: locomotivehosting.com).
|
2010-12-30 14:24:47 +00:00
|
|
|
#
|
2011-01-03 13:44:38 +00:00
|
|
|
# Ex:
|
2011-04-05 00:18:17 +00:00
|
|
|
# config.multi_sites do |multi_sites|
|
|
|
|
# # each new website you add will have a default entry based on a subdomain
|
|
|
|
# # and the multi_site_domain value (ex: website_1.locomotivehosting.com).
|
|
|
|
# multi_sites.domain = 'example.com' #'myhostingplatform.com'
|
|
|
|
#
|
|
|
|
# # define the reserved subdomains
|
|
|
|
# # Ex:
|
|
|
|
# multi_sites.reserved_subdomains = %w(www admin email blog webmail mail support help site sites)
|
|
|
|
# end
|
|
|
|
config.multi_sites = false
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-04-04 00:03:23 +00:00
|
|
|
# configure the hosting target for the production environment. Locomotive can be installed in:
|
|
|
|
# - your own server
|
|
|
|
# - Heroku (you need to create an account in this case)
|
|
|
|
# - Bushi.do (see the bushi.do website for more explanations)
|
|
|
|
#
|
|
|
|
# the possible options are: server, heroku, bushido or auto (default)
|
|
|
|
# if you select 'auto', Locomotive will look after specific ENV variables to check
|
|
|
|
# the matching platform (Heroku and Bushido set their own ENV variables).
|
|
|
|
#
|
|
|
|
config.hosting = :auto
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-04-04 00:03:23 +00:00
|
|
|
# In case you host Locomotive in Heroku, the engine uses the heroku api to add / remove domains.
|
2010-06-14 13:04:01 +00:00
|
|
|
# there are 2 ways of passing heroku credentials to Locomotive
|
|
|
|
# - from ENV variables: HEROKU_LOGIN & HEROKU_PASSWORD
|
2011-04-04 00:03:23 +00:00
|
|
|
# - from this file, see the example below and uncomment it if needed
|
|
|
|
# config.heroku = {
|
2011-04-26 23:12:32 +00:00
|
|
|
# :login => '<your_heroku_login>',
|
2011-04-04 00:03:23 +00:00
|
|
|
# :password => '<your_heroku_password>'
|
|
|
|
# }
|
2010-12-16 23:42:38 +00:00
|
|
|
|
2011-04-28 15:17:15 +00:00
|
|
|
# Locomotive uses the DelayedJob gem for the site import module.
|
2010-12-16 23:42:38 +00:00
|
|
|
# In case you want to deploy to Heroku, you will have to pay for an extra dyno.
|
|
|
|
# If you do not mind about importing theme without DelayedJob, disable it.
|
2011-04-28 15:17:15 +00:00
|
|
|
#
|
|
|
|
# Warning: this option is not used if you deploy on bushi.do and we set automatically the value to true.
|
2010-12-30 14:24:47 +00:00
|
|
|
config.delayed_job = false
|
|
|
|
|
2011-04-04 00:03:23 +00:00
|
|
|
# configure how many items we display in sub menu in the "Contents" section.
|
2011-04-24 23:21:38 +00:00
|
|
|
# config.lastest_items_nb = 5
|
2011-04-04 00:03:23 +00:00
|
|
|
|
2011-06-28 15:35:25 +00:00
|
|
|
# default locale (for now, only en, de, fr, pt-BR and it are supported)
|
2010-12-30 14:24:47 +00:00
|
|
|
config.default_locale = :en
|
2011-01-18 14:24:42 +00:00
|
|
|
|
2011-04-04 00:03:23 +00:00
|
|
|
# tell if logs are enabled. Useful for debug purpose.
|
|
|
|
config.enable_logs = true
|
|
|
|
|
2011-01-18 14:24:42 +00:00
|
|
|
# Configure the e-mail address which will be shown in the DeviseMailer, NotificationMailer, ...etc
|
2011-04-04 00:03:23 +00:00
|
|
|
# if you do not put the domain name in the email, Locomotive will take the default domain name depending
|
|
|
|
# on your deployment target (server, Heroku, Bushido, ...etc)
|
|
|
|
#
|
|
|
|
# Ex:
|
|
|
|
# config.mailer_sender = 'support'
|
|
|
|
# # => 'support@heroku.com' (Heroku), 'support@bushi.do' (Bushido), 'support@example.com' (Dev) or 'support@<your_hosting_platform>' (Multi-sites)
|
|
|
|
config.mailer_sender = 'support'
|
2011-06-28 15:35:25 +00:00
|
|
|
|
2011-07-28 13:03:13 +00:00
|
|
|
# allow apps using the engine to add their own Liquid drops, variables and similar available
|
|
|
|
# in Liquid templates, extending the assigns used while rendering.
|
|
|
|
# follow the Dependency Injection pattern
|
|
|
|
# config.context_assign_extensions = {}
|
|
|
|
|
2011-06-28 15:35:25 +00:00
|
|
|
# Rack-cache settings, mainly used for the inline resizing image module. Default options:
|
|
|
|
# config.rack_cache = {
|
|
|
|
# :verbose => true,
|
|
|
|
# :metastore => URI.encode("file:#{Rails.root}/tmp/dragonfly/cache/meta"), # URI encoded in case of spaces
|
|
|
|
# :entitystore => URI.encode("file:#{Rails.root}/tmp/dragonfly/cache/body")
|
|
|
|
# }
|
|
|
|
# If you do want to disable it for good, just use the following syntax
|
|
|
|
# config.rack_cache = false
|
|
|
|
#
|
|
|
|
# Note: by default, rack/cache is disabled in the Heroku platform
|
|
|
|
|
|
|
|
end
|