Advertisement
Guest User

Untitled

a guest
Mar 31st, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. 'staging' database is not configured. Available: ["defaults", "production", "writeable"] (ActiveRecord::AdapterNotSpecified)
  2.  
  3. defaults: &defaults
  4. adapter: mysql2
  5. host: eu-west-1.rds.amazonaws.com
  6. pool: 10
  7. reconnect: true
  8. encoding: utf8
  9. database: Project_database
  10.  
  11. production:
  12. <<: *defaults
  13. username: Username
  14. password: Password
  15. port: 3306
  16.  
  17. writeable:
  18. <<: *defaults
  19. username: Username
  20. password: Passowrd
  21. port: 3306
  22.  
  23. staging:
  24. <<: *defaults
  25. username: Username
  26. password: Password
  27. port: 3306
  28.  
  29. default: &default
  30. adapter: postgresql
  31. encoding: unicode
  32. host: localhost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement