2019-12-04 10:35:16 -05:00
|
|
|
import Config
|
2019-08-14 20:32:32 -04:00
|
|
|
|
|
|
|
# Configure your database
|
|
|
|
config :philomena, Philomena.Repo,
|
2020-10-26 17:01:29 -04:00
|
|
|
hostname: "postgres",
|
2020-04-11 11:54:55 -07:00
|
|
|
username: "postgres",
|
|
|
|
password: "postgres",
|
|
|
|
database: "philomena_test",
|
2019-08-14 20:32:32 -04:00
|
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
|
2020-05-27 17:34:44 -04:00
|
|
|
config :philomena,
|
2020-07-28 16:56:26 -04:00
|
|
|
pwned_passwords: false,
|
|
|
|
captcha: false
|
2020-05-27 17:34:44 -04:00
|
|
|
|
2019-08-14 20:32:32 -04:00
|
|
|
# We don't run a server during test. If one is required,
|
|
|
|
# you can enable the server option below.
|
|
|
|
config :philomena, PhilomenaWeb.Endpoint,
|
|
|
|
http: [port: 4002],
|
|
|
|
server: false
|
|
|
|
|
|
|
|
# Print only warnings and errors during test
|
2024-04-16 08:10:03 -04:00
|
|
|
config :logger, level: :warning
|