You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
318 B
14 lines
318 B
use Mix.Config
|
|
|
|
config :su_server, SUServer.Repo,
|
|
database: "score_clock",
|
|
username: "postgres",
|
|
hostname: "localhost",
|
|
password: "postgres",
|
|
pool_size: 10,
|
|
template: "template0",
|
|
queue_target: 5_000,
|
|
queue_interval: 15_000,
|
|
timeout: 120_000,
|
|
connect_timeout: 120_000,
|
|
ownership_timeout: 120_000
|
|
|