Packages

Endo is a library containing database schema reflection APIs for your applications, as well as implementations of queryable schemas to facilitate custom database reflection via Ecto.

Current section

Files

Jump to
endo lib test postgres repo.ex
Raw

lib/test/postgres/repo.ex

if Mix.env() == :test do
defmodule Test.Postgres.Repo do
@moduledoc false
use Ecto.Repo,
otp_app: :endo,
adapter: Ecto.Adapters.Postgres
end
end