This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
restcrud/config/test.exs
2023-06-02 18:41:02 +02:00

16 lines
304 B
Elixir

import Config
config :restcrud, Events.Repo,
database: "restcrud",
username: "postgres",
password: "pass",
hostname: "localhost",
pool: Ecto.Adapters.SQL.Sandbox
config :restcrud, ecto_repos: [Events.Repo]
config :restcrud, port: 4002
config :logger,
level: :info,
backends: [:console]