API de comptabilité horaire.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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