Files
Claper/lib/claper/repo.ex
2022-07-23 01:44:03 +02:00

10 lines
209 B
Elixir

defmodule Claper.Repo do
use Ecto.Repo,
otp_app: :claper,
adapter: Ecto.Adapters.Postgres
def init(_type, config) do
{:ok, Keyword.put(config, :url, System.get_env("DATABASE_URL"))}
end
end