mobilizon/lib/mobilizon/repo.ex

15 lines
308 B
Elixir

defmodule Mobilizon.Repo do
@moduledoc """
Mobilizon Repo
"""
use Ecto.Repo, otp_app: :mobilizon
@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