katso/config/prod.secret.exs

16 lines
449 B
Elixir
Raw Permalink Normal View History

2015-04-18 20:03:53 +00:00
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 :katso, Katso.Endpoint,
2015-11-28 14:27:58 +00:00
secret_key_base: "vPhy4euw5ZRCoD6Oh9apXEuvyGSxY8v6mXQOummG970OnVYxFfPmQ50uHAYIqErk"
2015-04-18 20:03:53 +00:00
# Configure your database
config :katso, Katso.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
2015-11-28 14:27:58 +00:00
database: "katso_prod",
pool_size: 20