Advertisement
Guest User

Untitled

a guest
Jan 19th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Analysis error: The space character ‘ ’ is not allowed in your database username or password in your config/database.yml file - please remove this character and try again.
  2.  
  3. default: &default
  4. adapter: postgresql
  5. encoding: unicode
  6. host: 0.0.0.0
  7. pool: 5
  8. username: <%= Rails.application.secrets.POSTGRES_USERNAME %>
  9. password: <%= Rails.application.secrets.POSTGRES_PASSWORD %>
  10.  
  11. development:
  12. <<: *default
  13. database: app_development
  14.  
  15. test:
  16. <<: *default
  17. database: app_test
  18.  
  19. production:
  20. <<: *default
  21. database: app_production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement