2022-04-22 15:21:25 +00:00
|
|
|
import Config
|
|
|
|
|
2024-09-20 21:54:20 +00:00
|
|
|
config :wabanex, dns_cluster_query: System.get_env("DNS_CLUSTER_QUERY") || :ignore
|
|
|
|
|
2022-04-22 15:21:25 +00:00
|
|
|
config :wabanex, Wabanex.Repo,
|
|
|
|
username: System.get_env("POSTGRES_USER") || "postgres",
|
|
|
|
password: System.get_env("POSTGRES_PASS") || "postgres",
|
|
|
|
hostname: System.get_env("POSTGRES_HOST") || "localhost"
|