mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 12:08:00 +01:00
22 lines
533 B
Elixir
22 lines
533 B
Elixir
import Config
|
|
|
|
# Configure your database
|
|
config :philomena, Philomena.Repo,
|
|
hostname: "postgres",
|
|
username: "postgres",
|
|
password: "postgres",
|
|
database: "philomena_test",
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
config :philomena,
|
|
pwned_passwords: false,
|
|
captcha: false
|
|
|
|
# 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
|
|
config :logger, level: :warning
|