summaryrefslogtreecommitdiff
path: root/config/test.exs
blob: 3319f9ba21db281855b10979f70c7869520e7559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Config

config :chessh, RateLimits,
  jail_timeout_ms: 10_000,
  jail_attempt_threshold: 3

config :chessh, Chessh.Repo,
  database: "chesshtest",
  username: "postgres",
  password: "postgres",
  hostname: "localhost",
  pool: Ecto.Adapters.SQL.Sandbox

config :chessh,
  port: 34_355,
  key_dir: Path.join(Path.dirname(__DIR__), "priv/test_keys")