Advertisement
Guest User

Untitled

a guest
Apr 8th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. fe_sendauth: no password supplied
  2. ...
  3. Couldn't create database for {"adapter"=>"postgresql", "encoding"=>"unicode", "pool"=>5, "username"=>nil, "password"=>nil, "host"=>"0.0.0.0", "database"=>"app_development"}
  4. fe_sendauth: no password supplied
  5. ...
  6. Couldn't create database for {"adapter"=>"postgresql", "encoding"=>"unicode", "pool"=>5, "username"=>nil, "password"=>nil, "host"=>"0.0.0.0", "database"=>"app_test"}
  7.  
  8. default: &default
  9. adapter: postgresql
  10. encoding: unicode
  11. pool: 5
  12. username: <%= ENV['USERNAME'] %>
  13. password: <%= ENV['PASSWORD'] %>
  14. host: <%= ENV['IP'] %>
  15.  
  16. development:
  17. <<: *default
  18. database: app_development
  19.  
  20. test:
  21. <<: *default
  22. database: app_test
  23.  
  24. production:
  25. <<: *default
  26. database: app_production
  27.  
  28. gem 'pg', '~> 0.18.2'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement