Current section

Files

Jump to
acl lib acl repo.ex
Raw

lib/acl/repo.ex

defmodule Acl.Repo do
use Ecto.Repo,
otp_app: :acl,
adapter: Ecto.Adapters.Postgres
@doc """
Dynamically loads the repository url from the
DATABASE_URL environment variable.
"""
def init(_, opts) do
{:ok, Keyword.put(opts, :url, System.get_env("DATABASE_URL"))}
end
end