Advertisement
Guest User

Untitled

a guest
Jul 6th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. default: &default
  2. adapter: mysql2
  3. host: XXXXXXXXXXXX.XXXXXXXXXXXX.us-east-1.rds.amazonaws.com
  4. username: username
  5. password: XXXXXXXXXXXXXXXXXXXXXXX
  6. timeout: 5000
  7. port: 3306
  8. pool: 5
  9. #database: db_name
  10.  
  11. development:
  12. <<: *default
  13. database: dev
  14.  
  15. # Warning: The database defined as "test" will be erased and
  16. # re-generated from your development database when you run "rake".
  17. # Do not set this db to the same as development or production.
  18. test:
  19. <<: *default
  20. database: test
  21.  
  22. production:
  23. <<: *default
  24. database: prod
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement