Advertisement
Guest User

Untitled

a guest
Nov 13th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem 'sqlite3'
  6. #
  7. default: &default
  8. adapter: mysql2
  9. encoding: utf8
  10. host: localhost
  11. port: 3306
  12. database: stampex
  13. username: stampex
  14. password: asdfjklasjdf
  15.  
  16.  
  17. development:
  18. <<: *default
  19. #database: db/development.sqlite3
  20.  
  21. # Warning: The database defined as "test" will be erased and
  22. # re-generated from your development database when you run "rake".
  23. # Do not set this db to the same as development or production.
  24. test:
  25. <<: *default
  26. database: db/test.sqlite3
  27.  
  28. production:
  29. <<: *default
  30. database: db/production.sqlite3
  31.  
  32. #production:
  33. # adapter: mysql2
  34. # encoding: utf8
  35. # host: localhost
  36. # port: 3306
  37. # database: stampex-api
  38. # username: stampex-api
  39. # password: asdfasdf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement