1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-18 19:14:03 +00:00
akkoma/lib/pleroma/repo.ex

12 lines
264 B
Elixir
Raw Normal View History

2017-03-17 16:09:58 +00:00
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