Skip to content

Instantly share code, notes, and snippets.

@tonyarkles
Created June 11, 2016 17:09
Show Gist options
  • Save tonyarkles/25c517935ee8e49933163f93cffa992f to your computer and use it in GitHub Desktop.
Save tonyarkles/25c517935ee8e49933163f93cffa992f to your computer and use it in GitHub Desktop.
use Mix.Config
# In this file, we keep production configuration that
# you likely want to automate and keep it away from
# your version control system.
config :frontend, Your.App.Endpoint,
secret_key_base: "your secret key here"
# Configure your database
config :frontend, Your.App.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
database: "your_db_prod",
pool_size: 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment