12 lines
221 B
Elixir
12 lines
221 B
Elixir
|
import Config
|
||
|
|
||
|
config :restcrud, Events.Repo,
|
||
|
database: "restcrud",
|
||
|
username: "postgres",
|
||
|
password: "pass",
|
||
|
hostname: "localhost"
|
||
|
|
||
|
config :restcrud, ecto_repos: [Events.Repo]
|
||
|
|
||
|
import_config("#{config_env()}.exs")
|