17 lines
304 B
Elixir
17 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]
|