Current section
Files
Jump to
Current section
Files
lib/uuid_helper/repo.ex
defmodule UuidHelper.Repo do
use Ecto.Repo, otp_app: :uuid_helper
@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