1 # Be sure to restart your server when you modify this file
3 # Uncomment below to force Rails into production mode when
4 # you don't control web/app server and can't set it the proper way
5 ENV['RAILS_ENV'] ||= 'production'
7 # Specifies gem version of Rails to use when vendor/rails is not present
8 RAILS_GEM_VERSION = '2.3.8' unless defined? RAILS_GEM_VERSION
11 SERVER_URL = ENV['OSM_SERVER_URL'] || 'www.openstreetmap.org'
14 GENERATOR = ENV['OSM_SERVER_GENERATOR'] || 'OpenStreetMap server'
16 # Settings for generated emails (e.g. signup confirmation
17 EMAIL_FROM = ENV['OSM_EMAIL_FROM'] || 'OpenStreetMap <webmaster@openstreetmap.org>'
18 EMAIL_RETURN_PATH = ENV['OSM_EMAIL_RETURN_PATH'] || 'bounces@openstreetmap.org'
20 # Application constants needed for routes.rb - must go before Initializer call
21 API_VERSION = ENV['OSM_API_VERSION'] || '0.6'
23 # Set application status - possible settings are:
25 # :online - online and operating normally
26 # :api_readonly - site online but API in read-only mode
27 # :api_offline - site online but API offline
28 # :database_readonly - database and site in read-only mode
29 # :database_offline - database offline with site in emergency mode
30 # :gpx_offline - gpx storage offline
34 # Bootstrap the Rails environment, frameworks, and default configuration
35 require File.join(File.dirname(__FILE__), 'boot')
37 Rails::Initializer.run do |config|
38 # Settings in config/environments/* take precedence over those specified here.
39 # Application configuration should go into files in config/initializers
40 # -- all .rb files in that directory are automatically loaded.
42 # Add additional load paths for your own custom dirs
43 # config.load_paths += %W( #{RAILS_ROOT}/extras )
45 # Specify gems that this application depends on and have them installed with rake gems:install
46 unless OSM_STATUS == :database_offline
47 config.gem 'composite_primary_keys', :version => '2.2.2'
49 config.gem 'libxml-ruby', :version => '>= 1.1.1', :lib => 'libxml'
50 config.gem 'rmagick', :lib => 'RMagick'
51 config.gem 'oauth', :version => '>= 0.3.6'
52 config.gem 'httpclient'
53 config.gem 'SystemTimer', :version => '>= 1.1.3', :lib => 'system_timer'
56 # Only load the plugins named here, in the order given (default is alphabetical).
57 # :all can be used as a placeholder for all plugins not explicitly named
58 # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
60 # Skip frameworks you're not going to use. To use Rails without a database,
61 # you must remove the Active Record framework.
62 if OSM_STATUS == :database_offline
63 config.frameworks -= [ :active_record ]
64 config.eager_load_paths = []
67 # Activate observers that should always be running
68 config.active_record.observers = :spam_observer
70 # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
71 # Run "rake -D time" for a list of tasks for finding time zone names.
72 config.time_zone = 'UTC'
74 # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
75 # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
76 # config.i18n.default_locale = :de
78 # Use SQL instead of Active Record's schema dumper when creating the test database.
79 # This is necessary if your schema can't be completely dumped by the schema dumper,
80 # like if you have constraints or database-specific column types
81 config.active_record.schema_format = :sql