Guest User

Untitled

a guest
Feb 14th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Development Database
  2. development: &pgsql
  3. adapter: postgresql
  4. database: msf_dev_db
  5. username: msfdev
  6. password: $PSQL_PASSWD
  7. host: localhost
  8. port: 5432
  9. pool: 5
  10. timeout: 5
  11.  
  12. # Production database -- same as dev
  13. production: &production
  14. <<: *pgsql
  15.  
  16. # Test database -- not the same, since it gets dropped all the time
  17. test:
  18. <<: *pgsql
  19. database: msf_test_db
Add Comment
Please, Sign In to add comment