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 569B

123456789101112131415161718192021
  1. default: &default
  2. adapter: postgresql
  3. pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  4. timeout: 5000
  5. username: <%= ENV['PG_USER'] %>
  6. password: <%= ENV['PG_USER_PWD'] %>
  7. # Warning: The database defined as "test" will be erased and
  8. # re-generated from your development database when you run "rake".
  9. # Do not set this db to the same as development or production.
  10. test:
  11. <<: *default
  12. database: chronobriq_test
  13. development:
  14. <<: *default
  15. database: chronobriq_development
  16. production:
  17. <<: *default
  18. database: chronobriq_production