dee7c58449
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
355 B
Elixir
18 lines
355 B
Elixir
defmodule Mobilizon.Storage.Repo do
|
|
@moduledoc """
|
|
Mobilizon Repo.
|
|
"""
|
|
|
|
use Ecto.Repo,
|
|
otp_app: :mobilizon,
|
|
adapter: Ecto.Adapters.Postgres
|
|
|
|
@doc """
|
|
Dynamically loads the repository url from the DATABASE_URL environment variable.
|
|
"""
|
|
@spec init(any(), any()) :: {:ok, Keyword.t()}
|
|
def init(_, opts) do
|
|
{:ok, opts}
|
|
end
|
|
end
|