Guest User

Untitled

a guest
Feb 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. development:
  2. adapter: sqlserver
  3. database: myDb
  4. username: sa
  5. password: sa
  6. host: (local)\SQL2005
  7.  
  8. production:
  9. adapter: sqlserver
  10. database: myDb
  11. username: sa
  12. password: sa
  13. host: (local)\SQL200
  14.  
  15.  
  16.  
  17. # Be sure to restart your web server when you modify this file.
  18.  
  19. # Uncomment below to force Rails into production mode when
  20. # you don't control web/app server and can't set it the proper way
  21. # ENV['RAILS_ENV'] ||= 'production'
  22.  
  23. # Specifies gem version of Rails to use when vendor/rails is not present
  24. RAILS_GEM_VERSION = '1.1.6'
  25.  
  26. # Bootstrap the Rails environment, frameworks, and default configuration
  27. require File.join(File.dirname(__FILE__), 'boot')
  28.  
  29. Rails::Initializer.run do |config|
  30. # Settings in config/environments/* take precedence those specified here
  31.  
  32. # Skip frameworks you're not going to use (only works if using vendor/rails)
  33. # config.frameworks -= [ :action_web_service, :action_mailer ]
  34.  
  35. # Add additional load paths for your own custom dirs
  36. # config.load_paths += %W( #{RAILS_ROOT}/extras )
  37.  
  38. # Force all environments to use the same logger level
  39. # (by default production uses :info, the others :debug)
  40. # config.log_level = :debug
  41.  
  42. # Use the database for sessions instead of the file system
  43. # (create the session table with 'rake db:sessions:create')
  44. # config.action_controller.session_store = :active_record_store
  45.  
  46. # Use SQL instead of Active Record's schema dumper when creating the test database.
  47. # This is necessary if your schema can't be completely dumped by the schema dumper,
  48. # like if you have constraints or database-specific column types
  49. # config.active_record.schema_format = :sql
  50.  
  51. # Activate observers that should always be running
  52. # config.active_record.observers = :cacher, :garbage_collector
  53.  
  54. # Make Active Record use UTC-base instead of local time
  55. # config.active_record.default_timezone = :utc
  56.  
  57. # See Rails::Configuration for more options
  58. end
  59.  
  60. # Add new inflection rules using the following format
  61. # (all these examples are active by default):
  62. # Inflector.inflections do |inflect|
  63. # inflect.plural /^(ox)$/i, '\1en'
  64. # inflect.singular /^(ox)en/i, '\1'
  65. # inflect.irregular 'person', 'people'
  66. # inflect.uncountable %w( fish sheep )
  67. # end
  68.  
  69. # Include your application configuration below
Add Comment
Please, Sign In to add comment