Guest User

Untitled

a guest
Sep 20th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. ---
  2. <% require 'uri' %>
  3. <% url = URI.parse(ENV["DATABASE_URL"]) %>
  4. production:
  5. adapter: <%= url.scheme %>
  6. database: <%= url.path.gsub("/", "") %>
  7. username: <%= url.user %>
  8. password: <%= url.password %>
  9. host: <%= url.host %>
  10. port:
  11. reconnect: true
Add Comment
Please, Sign In to add comment