90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
12 lines
264 B
Elixir
12 lines
264 B
Elixir
defmodule Eventos.Repo do
|
|
use Ecto.Repo, otp_app: :eventos
|
|
|
|
@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
|