mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
7fd9d7e45a
* Update issue templates
18 lines
525 B
Elixir
18 lines
525 B
Elixir
import Config
|
|
|
|
# Configure your database
|
|
config :philomena, Philomena.Repo,
|
|
username: System.get_env("PGUSER"),
|
|
password: System.get_env("PGPASSWORD"),
|
|
database: System.get_env("PGDATABASE"),
|
|
hostname: System.get_env("PGHOST"),
|
|
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
|