Advertisement
Guest User

database.yml

a guest
Apr 5th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. default: &default
  2. adapter: mysql2
  3. encoding: utf8
  4. pool: 5
  5. username: root
  6. password: mysql
  7. socket: /var/run/mysqld/mysqld.sock
  8.  
  9. development:
  10. <<: *default
  11. database: wpedido_development
  12.  
  13. test:
  14. <<: *default
  15. database: wpedido_test
  16. production:
  17. <<: *default
  18. database: wpedido_production
  19. username: wpedido
  20. password: <%= ENV['WPEDIDO_DATABASE_PASSWORD'] %>
  21.  
  22. gerencial_connection:
  23. adapter: mysql2
  24. encoding: utf8
  25. database: gerencial
  26. pool: 5
  27. host: localhost
  28. username: root
  29. password: mysql
  30. socket: /var/run/mysqld/mysqld.sock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement