20 lines
646 B
Plaintext
20 lines
646 B
Plaintext
|
use Mix.Config
|
||
|
|
||
|
# In this file, we keep production configuration that
|
||
|
# you'll likely want to automate and keep away from
|
||
|
# your version control system.
|
||
|
#
|
||
|
# You should document the content of this
|
||
|
# file or create a script for recreating it, since it's
|
||
|
# kept out of version control and might be hard to recover
|
||
|
# or recreate for your teammates (or yourself later on).
|
||
|
config :the_mesh, TheMeshWeb.Endpoint,
|
||
|
secret_key_base: "mUXjY3WZcicJztQaKcnL2jTKSm8qBzeU1G1pXwh9Nxgwp3z38istIk0zjWTrNNJ4"
|
||
|
|
||
|
# Configure your database
|
||
|
config :the_mesh, TheMesh.Repo,
|
||
|
username: "postgres",
|
||
|
password: "postgres",
|
||
|
database: "the_mesh_prod",
|
||
|
pool_size: 15
|