Phoenix skeleton
This commit is contained in:
commit
a93f3421a7
25 changed files with 873 additions and 0 deletions
11
lib/pleroma/repo.ex
Normal file
11
lib/pleroma/repo.ex
Normal file
|
|
@ -0,0 +1,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
|
||||
Loading…
Add table
Add a link
Reference in a new issue