Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. common: &common
  2. adapter: mysql2
  3. host: "localhost"
  4. port: 3306
  5. # socket: /tmp/mysql.sock
  6. username: "root"
  7. password: "pw"
  8. charset: utf8
  9. collation: utf8_bin
  10.  
  11.  
  12. development:
  13. <<: *common
  14. database: diaspora_development
  15.  
  16. production:
  17. <<: *common
  18. database: diaspora_production
  19.  
  20. test:
  21. <<: *common
  22. database: "diaspora_test"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement