mobilizon.chapril.org-mobil.../lib/eventos/repo.ex
Thomas Citharel 90ceb4f6fe initial commit
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2017-12-08 09:58:14 +01:00

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