Advertisement
Guest User

Untitled

a guest
Jan 21st, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. default: &default
  2. adapter: sqlite3
  3. pool: 5
  4. timeout: 5000
  5.  
  6. development:
  7. <<: *default
  8. database: db/development.sqlite3
  9.  
  10. test:
  11. <<: *default
  12. database: db/test.sqlite3
  13.  
  14. production:
  15. host: localhost
  16. adapter: postgresql
  17. encoding: utf8
  18. database: asrapi_production
  19. template: template0
  20. pool: 5
  21. timeout: 5000
  22. username: <%= ENV['DB_USER'] %>
  23. password: <%= ENV['DB_PASSWORD'] %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement