Advertisement
Guest User

Untitled

a guest
Jun 11th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 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. config :frontend, Your.App.Endpoint,
  7. secret_key_base: "your secret key here"
  8.  
  9. # Configure your database
  10. config :frontend, Your.App.Repo,
  11. adapter: Ecto.Adapters.Postgres,
  12. username: "postgres",
  13. password: "postgres",
  14. database: "your_db_prod",
  15. pool_size: 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement