mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-23 16:33:28 +00:00
1217361b6c
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
14 lines
302 B
Elixir
14 lines
302 B
Elixir
defmodule Eventos.Repo do
|
|
@moduledoc """
|
|
Eventos Repo
|
|
"""
|
|
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
|