Skip to content

Instantly share code, notes, and snippets.

@ziazek
Last active June 1, 2017 08:49
Show Gist options
  • Save ziazek/b87131e136bad09b41f7d335f0ee4b45 to your computer and use it in GitHub Desktop.
Save ziazek/b87131e136bad09b41f7d335f0ee4b45 to your computer and use it in GitHub Desktop.
Example Production secrets file
use Mix.Config
config :deploy_phoenix, DeployPhoenix.Endpoint,
secret_key_base: "<<SECRET_GOES_HERE>>"
# Configure your database
config :deploy_phoenix, DeployPhoenix.Repo,
adapter: Ecto.Adapters.Postgres,
username: "deployphoenix",
password: "mypassword",
database: "deployphoenix_prod",
pool_size: 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment