Sprankelprachtig aan/afmeldsysteem

database.yml 657B

123456789101112131415161718192021222324252627282930
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem 'sqlite3'
  6. #
  7. default: &default
  8. adapter: sqlite3
  9. pool: 5
  10. timeout: 5000
  11. development:
  12. <<: *default
  13. database: db/development.sqlite3
  14. # Warning: The database defined as "test" will be erased and
  15. # re-generated from your development database when you run "rake".
  16. # Do not set this db to the same as development or production.
  17. test:
  18. <<: *default
  19. database: db/test.sqlite3
  20. production:
  21. adapter: postgresql
  22. encoding: unicode
  23. database: <%= ENV['DB_NAME'] %>
  24. username: <%= ENV['DB_USER'] %>
  25. password: <%= ENV['DB_PASS'] %>
  26. pool: 5