mobilizon.chapril.org-mobil.../lib/mobilizon/storage/repo.ex
Thomas Citharel 496debd6f3
Change everything for releases
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2021-02-10 14:39:09 +01:00

17 lines
306 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.
"""
def init(_, opts) do
{:ok, opts}
end
end