mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-03-05 15:25:24 +00:00
init
This commit is contained in:
11
lib/myapp/repo.ex
Normal file
11
lib/myapp/repo.ex
Normal file
@@ -0,0 +1,11 @@
|
||||
defmodule MyApp.Repo do
|
||||
use Ecto.Repo, otp_app: :myapp
|
||||
|
||||
@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