Sha256: 9a59a1214e315223005c9855dce161f4ceb40e4b8e815393f4c06ef4a0962704
Contents?: true
Size: 1.08 KB
Versions: 6
Compression:
Stored size: 1.08 KB
Contents
require File.dirname(__FILE__) + '/../../lib/locomotive.rb' Locomotive.configure do |config| # if not defined, locomotive will use example.com as main domain name. Remove prefix www from your domain name. # Ex: # config.default_domain = Rails.env.production? ? 'mydomain.com' : 'example.com' config.default_domain = 'example.com' # configure how many items we display in sub menu in the "Contents" section. config.lastest_items_nb = 5 # tell if logs are enabled. Useful for debug purpose. config.enable_logs = true # tell if the application is hosted on Heroku. # Locomotive uses heroku api to add / remove domains. # there are 2 ways of passing heroku credentials to Locomotive # - from ENV variables: HEROKU_LOGIN & HEROKU_PASSWORD # - from this file # # Notes: # - IMPORTANT: behaviours related to this option will only be applied in production # - credentials coming from this file take precedence over ENV variables # # Ex: # config.heroku = { :name => '<my heroku app name>', :login => 'john@doe.net', :password => 'easy' } config.heroku = false end
Version data entries
6 entries across 6 versions & 1 rubygems