Rename project to Mobilizon
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
14
lib/mobilizon/repo.ex
Normal file
14
lib/mobilizon/repo.ex
Normal file
@@ -0,0 +1,14 @@
|
||||
defmodule Mobilizon.Repo do
|
||||
@moduledoc """
|
||||
Mobilizon Repo
|
||||
"""
|
||||
use Ecto.Repo, otp_app: :mobilizon
|
||||
|
||||
@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
|
||||
Reference in New Issue
Block a user