Guest User

Untitled

a guest
Mar 17th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 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.  
  7. database: thinktable_development
  8. username: root
  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: sample_test
  25.  
  26. # repositories:
  27. # repo1:
  28. # database: sample_development
  29.  
  30. production:
  31. <<: *defaults
  32. database: sample_production
  33.  
  34. # repositories:
  35. # repo1:
  36. # database: sample_development
Add Comment
Please, Sign In to add comment