Initial commit: there's still tons of base Phoenix boilerplate to remove, but the...
[tech-radar-editor.git] / config / test.exs
1 use Mix.Config
2
3 # We don't run a server during test. If one is required,
4 # you can enable the server option below.
5 config :tech_radar_editor, TechRadarEditor.Endpoint,
6 http: [port: 4001],
7 server: false
8
9 # Print only warnings and errors during test
10 config :logger, level: :warn
11
12 # Configure your database
13 config :tech_radar_editor, TechRadarEditor.Repo,
14 adapter: Ecto.Adapters.Postgres,
15 username: "postgres",
16 password: "postgres",
17 database: "tech_radar_editor_test",
18 hostname: "localhost",
19 pool: Ecto.Adapters.SQL.Sandbox