2019-12-04 16:35:16 +01:00
|
|
|
import Config
|
2019-08-15 02:32:32 +02:00
|
|
|
|
|
|
|
# Configure your database
|
|
|
|
config :philomena, Philomena.Repo,
|
2019-12-08 04:07:49 +01:00
|
|
|
username: System.get_env("PGUSER"),
|
|
|
|
password: System.get_env("PGPASSWORD"),
|
|
|
|
database: System.get_env("PGDATABASE"),
|
|
|
|
hostname: System.get_env("PGHOST"),
|
2019-08-15 02:32:32 +02:00
|
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
|
|
|
|
# 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: :warn
|