Files
Haim Kortovich 072dbf6e66 WIP
2026-03-05 11:35:01 -05:00

14 lines
322 B
Elixir

defmodule CustomerService.Repo do
use Ecto.Repo,
otp_app: :customer_service,
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