diff --git a/config/dev.exs b/config/dev.exs index d226e5d..02f9bcc 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -2,10 +2,10 @@ use Mix.Config # Configure your database config :wabanex, Wabanex.Repo, - username: "postgres", - password: "postgres", + username: System.get_env("POSTGRES_USER") || "postgres", + password: System.get_env("POSTGRES_PASS") || "postgres", database: "wabanex_dev", - hostname: "localhost", + hostname: System.get_env("POSTGRES_HOST") || "localhost", show_sensitive_data_on_connection_error: true, pool_size: 10 diff --git a/config/test.exs b/config/test.exs index c92b15e..a99973e 100644 --- a/config/test.exs +++ b/config/test.exs @@ -6,10 +6,10 @@ use Mix.Config # to provide built-in test partitioning in CI environment. # Run `mix help test` for more information. config :wabanex, Wabanex.Repo, - username: "postgres", - password: "postgres", + username: System.get_env("POSTGRES_USER") || "postgres", + password: System.get_env("POSTGRES_PASS") || "postgres", database: "wabanex_test#{System.get_env("MIX_TEST_PARTITION")}", - hostname: "localhost", + hostname: System.get_env("POSTGRES_HOST") || "localhost", pool: Ecto.Adapters.SQL.Sandbox # We don't run a server during test. If one is required,