This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
graphql-lightning-talk/config/test.exs
2018-04-08 09:20:53 +12:00

19 lines
484 B
Elixir

use Mix.Config
# We don't run a server during test. If one is required,
# you can enable the server option below.
config :faces, FacesWeb.Endpoint,
http: [port: 4001],
server: false
# Print only warnings and errors during test
config :logger, level: :warn
# Configure your database
config :faces, Faces.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
database: "faces_test",
hostname: "localhost",
pool: Ecto.Adapters.SQL.Sandbox