Guest User

Untitled

a guest
Apr 7th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. ---
  2. # This is a sample database file for the DataMapper ORM
  3. development: &defaults
  4. # These are the settings for repository :default
  5. adapter: mysql
  6. database: hours_development
  7. username: caiges
  8. password: coolbeans
  9. host: localhost
  10.  
  11. # Add more repositories
  12. # repositories:
  13. # repo1:
  14. # adapter: postgresql
  15. # database: sample_development
  16. # username: the_user
  17. # password: secrets
  18. # host: localhost
  19. # repo2:
  20. # ...
  21.  
  22. test:
  23. <<: *defaults
  24. database: hours_test
  25.  
  26. # repositories:
  27. # repo1:
  28. # database: sample_development
  29.  
  30. production:
  31. <<: *defaults
  32. database: hours_production
  33.  
  34. # repositories:
  35. # repo1:
  36. # database: sample_development
Add Comment
Please, Sign In to add comment