]> git.openstreetmap.org Git - rails.git/blob - config/environment.rb
Now all the unit tests work
[rails.git] / config / environment.rb
1 # Be sure to restart your server when you modify this file
2
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'
6
7 # Specifies gem version of Rails to use when vendor/rails is not present
8 # DO NOT BUMP THIS TO 2.0.2 AS THE LIVE SERVERS CAN'T RUN THAT
9 RAILS_GEM_VERSION = '2.0.1' unless defined? RAILS_GEM_VERSION
10
11 # Set the server URL
12 SERVER_URL = ENV['OSM_SERVER_URL'] || 'www.openstreetmap.org'
13
14 # Application constants needed for routes.rb - must go before Initializer call
15 API_VERSION = ENV['OSM_API_VERSION'] || '0.6'
16
17 # Set to :readonly to put the API in read-only mode or :offline to
18 # take it completely offline
19 API_STATUS = :online
20
21 # Bootstrap the Rails environment, frameworks, and default configuration
22 require File.join(File.dirname(__FILE__), 'boot')
23
24 Rails::Initializer.run do |config|
25   # Settings in config/environments/* take precedence over those specified here.
26   # Application configuration should go into files in config/initializers
27   # -- all .rb files in that directory are automatically loaded.
28   # See Rails::Configuration for more options.
29
30   # Skip frameworks you're not going to use (only works if using vendor/rails).
31   # To use Rails without a database, you must remove the Active Record framework
32   # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
33
34   # Only load the plugins named here, in the order given. By default, all plugins 
35   # in vendor/plugins are loaded in alphabetical order.
36   # :all can be used as a placeholder for all plugins not explicitly named
37   # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
38
39   # Add additional load paths for your own custom dirs
40   # config.load_paths += %W( #{RAILS_ROOT}/extras )
41
42   # Force all environments to use the same logger level
43   # (by default production uses :info, the others :debug)
44   # config.log_level = :debug
45
46   # Your secret key for verifying cookie session data integrity.
47   # If you change this key, all old sessions will become invalid!
48   # Make sure the secret is at least 30 characters and all random, 
49   # no regular words or you'll be exposed to dictionary attacks.
50   config.action_controller.session = {
51     :session_key => '_osm_session',
52     :secret      => 'd886369b1e709c61d1f9fcb07384a2b96373c83c01bfc98c6611a9fe2b6d0b14215bb360a0154265cccadde5489513f2f9b8d9e7b384a11924f772d2872c2a1f'
53   }
54
55   # Use the database for sessions instead of the cookie-based default,
56   # which shouldn't be used to store highly confidential information
57   # (create the session table with 'rake db:sessions:create')
58   config.action_controller.session_store = :sql_session_store
59
60   # Use SQL instead of Active Record's schema dumper when creating the test database.
61   # This is necessary if your schema can't be completely dumped by the schema dumper,
62   # like if you have constraints or database-specific column types
63   config.active_record.schema_format = :sql
64
65   # Activate observers that should always be running
66   # config.active_record.observers = :cacher, :garbage_collector
67
68   # Make Active Record use UTC-base instead of local time
69   # config.active_record.default_timezone = :utc
70 end
71
72 # This has to be after the above block for some reason (doesnt pull in /lib/osm.rb?)
73 POTLATCH_PRESETS = Potlatch::Potlatch.get_presets()
74
75