blob: 7cecd7b385eed95242803ab2869fa8f795fd7e6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
defmodule Pleroma.Repo do
use Ecto.Repo, otp_app: :pleroma
@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
|