[extra-02] access db using env vars

To make easier to run the app locally with docker and in CI, the
configurations were adjusted to read the database access from
environment variables:

1. POSTGRES_USER
2. POSTGRES_PASS
3. POSTGRES_HOST
This commit is contained in:
Joao P Dubas 2021-06-28 12:41:20 +00:00
parent e493aead51
commit 9888eebd58
2 changed files with 6 additions and 6 deletions

View File

@ -2,10 +2,10 @@ use Mix.Config
# Configure your database # Configure your database
config :wabanex, Wabanex.Repo, config :wabanex, Wabanex.Repo,
username: "postgres", username: System.get_env("POSTGRES_USER") || "postgres",
password: "postgres", password: System.get_env("POSTGRES_PASS") || "postgres",
database: "wabanex_dev", database: "wabanex_dev",
hostname: "localhost", hostname: System.get_env("POSTGRES_HOST") || "localhost",
show_sensitive_data_on_connection_error: true, show_sensitive_data_on_connection_error: true,
pool_size: 10 pool_size: 10

View File

@ -6,10 +6,10 @@ use Mix.Config
# to provide built-in test partitioning in CI environment. # to provide built-in test partitioning in CI environment.
# Run `mix help test` for more information. # Run `mix help test` for more information.
config :wabanex, Wabanex.Repo, config :wabanex, Wabanex.Repo,
username: "postgres", username: System.get_env("POSTGRES_USER") || "postgres",
password: "postgres", password: System.get_env("POSTGRES_PASS") || "postgres",
database: "wabanex_test#{System.get_env("MIX_TEST_PARTITION")}", database: "wabanex_test#{System.get_env("MIX_TEST_PARTITION")}",
hostname: "localhost", hostname: System.get_env("POSTGRES_HOST") || "localhost",
pool: Ecto.Adapters.SQL.Sandbox pool: Ecto.Adapters.SQL.Sandbox
# We don't run a server during test. If one is required, # We don't run a server during test. If one is required,