API de comptabilité horaire.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

database.yml 819B

12345678910111213141516171819202122232425262728293031
  1. # SQLite. Versions 3.8.0 and up are supported.
  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. adapter: postgresql
  10. pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  11. timeout: 5000
  12. username: <%= ENV['PG_USER'] %>
  13. password: <%= ENV['PG_USER_PWD'] %>
  14. development:
  15. <<: *default
  16. # database: db/development.sqlite3
  17. database: chronobriq_development
  18. # Warning: The database defined as "test" will be erased and
  19. # re-generated from your development database when you run "rake".
  20. # Do not set this db to the same as development or production.
  21. test:
  22. <<: *default
  23. # database: db/test.sqlite3
  24. database: chronobriq_test
  25. production:
  26. <<: *default
  27. # database: db/production.sqlite3
  28. database: chronobriq_production