2022-12-19 03:37:10 -05:00
|
|
|
import Config
|
|
|
|
|
|
|
|
config :chessh, Chessh.Repo,
|
|
|
|
database: "chessh-test",
|
|
|
|
username: "postgres",
|
|
|
|
password: "postgres",
|
2022-12-19 18:27:34 -05:00
|
|
|
hostname: "localhost",
|
|
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
2022-12-19 22:56:59 -05:00
|
|
|
|
2022-12-22 17:27:55 -05:00
|
|
|
config :chessh,
|
|
|
|
priv_dir: Path.join(Path.dirname(__DIR__), "priv/keys")
|