Allow database port configuration for dev and test

This commit is contained in:
Cku
2020-06-01 22:34:16 +02:00
parent 1e493ccd28
commit cf6b3fbf31
2 changed files with 2 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ config :mobilizon, Mobilizon.Storage.Repo,
password: System.get_env("MOBILIZON_DATABASE_PASSWORD") || "mobilizon",
database: System.get_env("MOBILIZON_DATABASE_DBNAME") || "mobilizon_test",
hostname: System.get_env("MOBILIZON_DATABASE_HOST") || "localhost",
port: System.get_env("MOBILIZON_DATABASE_PORT") || "5432",
pool: Ecto.Adapters.SQL.Sandbox
config :mobilizon, Mobilizon.Web.Email.Mailer, adapter: Bamboo.TestAdapter