Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. use Mix.Config
  2.  
  3. # In this file, we keep production configuration that
  4. # you likely want to automate and keep it away from
  5. # your version control system.
  6. #
  7. # You should document the content of this
  8. # file or create a script for recreating it, since it's
  9. # kept out of version control and might be hard to recover
  10. # or recreate for your teammates (or you later on).
  11. config :penguin, Penguin.Endpoint,
  12. secret_key_base: "<<SECRET_GOES_HERE>>"
  13.  
  14. # Configure your database
  15. config :penguin, Penguin.Repo,
  16. adapter: Ecto.Adapters.Postgres,
  17. username: "deployphoenix",
  18. password: "mypassword",
  19. database: "deployphoenix_prod",
  20. pool_size: 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement