Advertisement
Guest User

Untitled

a guest
Apr 29th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. default: &default
  2. adapter: postgresql
  3. encoding: unicode
  4. username: nombre_de_usuario
  5. password: contraseña
  6. pool: 5
  7. timeout: 5000
  8.  
  9. development:
  10. <<: *default
  11. host: localhost
  12. database: db/development_capistrano
  13.  
  14. test:
  15. <<: *default
  16. host: localhost
  17. database: db/test_capistrano
  18.  
  19. production:
  20. <<: *default
  21. host: localhost
  22. database: production_capistrano
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement