diff --git a/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/index.ex b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/index.ex
new file mode 100644
index 0000000..a639249
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/index.ex
@@ -0,0 +1,46 @@
+defmodule DemoWeb.UserLive.Index do
+ use DemoWeb, :live_view
+
+ alias Demo.Accounts
+ alias Demo.Accounts.User
+
+ @impl true
+ def mount(_params, _session, socket) do
+ {:ok, assign(socket, :users, list_users())}
+ end
+
+ @impl true
+ def handle_params(params, _url, socket) do
+ {:noreply, apply_action(socket, socket.assigns.live_action, params)}
+ end
+
+ defp apply_action(socket, :edit, %{"id" => id}) do
+ socket
+ |> assign(:page_title, "Edit User")
+ |> assign(:user, Accounts.get_user!(id))
+ end
+
+ defp apply_action(socket, :new, _params) do
+ socket
+ |> assign(:page_title, "New User")
+ |> assign(:user, %User{})
+ end
+
+ defp apply_action(socket, :index, _params) do
+ socket
+ |> assign(:page_title, "Listing Users")
+ |> assign(:user, nil)
+ end
+
+ @impl true
+ def handle_event("delete", %{"id" => id}, socket) do
+ user = Accounts.get_user!(id)
+ {:ok, _} = Accounts.delete_user(user)
+
+ {:noreply, assign(socket, :users, list_users())}
+ end
+
+ defp list_users do
+ Accounts.list_users()
+ end
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/index.html.heex b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/index.html.heex
new file mode 100644
index 0000000..58f1b37
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/index.html.heex
@@ -0,0 +1,39 @@
+
Listing Users
+
+<%= if @live_action in [:new, :edit] do %>
+ <.modal return_to={Routes.user_index_path(@socket, :index)}>
+ <.live_component
+ module={DemoWeb.UserLive.FormComponent}
+ id={@user.id || :new}
+ title={@page_title}
+ action={@live_action}
+ user={@user}
+ return_to={Routes.user_index_path(@socket, :index)}
+ />
+
+<% end %>
+
+
+
+
+
Name
+
+
+
+
+
+ <%= for user <- @users do %>
+
+
<%= user.name %>
+
+
+ <%= live_redirect "Show", to: Routes.user_show_path(@socket, :show, user) %>
+ <%= live_patch "Edit", to: Routes.user_index_path(@socket, :edit, user) %>
+ <%= link "Delete", to: "#", phx_click: "delete", phx_value_id: user.id, data: [confirm: "Are you sure?"] %>
+
+
+ <% end %>
+
+
+
+<%= live_patch "New User", to: Routes.user_index_path(@socket, :new) %>
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/show.ex b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/show.ex
new file mode 100644
index 0000000..69be883
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/show.ex
@@ -0,0 +1,21 @@
+defmodule DemoWeb.UserLive.Show do
+ use DemoWeb, :live_view
+
+ alias Demo.Accounts
+
+ @impl true
+ def mount(_params, _session, socket) do
+ {:ok, socket}
+ end
+
+ @impl true
+ def handle_params(%{"id" => id}, _, socket) do
+ {:noreply,
+ socket
+ |> assign(:page_title, page_title(socket.assigns.live_action))
+ |> assign(:user, Accounts.get_user!(id))}
+ end
+
+ defp page_title(:show), do: "Show User"
+ defp page_title(:edit), do: "Edit User"
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/show.html.heex b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/show.html.heex
new file mode 100644
index 0000000..c85dca1
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/live/user_live/show.html.heex
@@ -0,0 +1,26 @@
+
Show User
+
+<%= if @live_action in [:edit] do %>
+ <.modal return_to={Routes.user_show_path(@socket, :show, @user)}>
+ <.live_component
+ module={DemoWeb.UserLive.FormComponent}
+ id={@user.id}
+ title={@page_title}
+ action={@live_action}
+ user={@user}
+ return_to={Routes.user_show_path(@socket, :show, @user)}
+ />
+
+<% end %>
+
+
+
+
+ Name:
+ <%= @user.name %>
+
+
+
+
+<%= live_patch "Edit", to: Routes.user_show_path(@socket, :edit, @user), class: "button" %> |
+<%= live_redirect "Back", to: Routes.user_index_path(@socket, :index) %>
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/router.ex b/examples/basic_phoenix_ecto/lib/demo_web/router.ex
new file mode 100644
index 0000000..796ffc2
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/router.ex
@@ -0,0 +1,65 @@
+defmodule DemoWeb.Router do
+ use DemoWeb, :router
+
+ pipeline :browser do
+ plug :accepts, ["html"]
+ plug :fetch_session
+ plug :fetch_live_flash
+ plug :put_root_layout, {DemoWeb.LayoutView, :root}
+ plug :protect_from_forgery
+ plug :put_secure_browser_headers
+ end
+
+ pipeline :api do
+ plug :accepts, ["json"]
+ end
+
+ scope "/", DemoWeb do
+ pipe_through :browser
+
+ get "/", PageController, :index
+ resources "/posts", PostController
+
+
+ live "/users", UserLive.Index, :index
+ live "/users/new", UserLive.Index, :new
+ live "/users/:id/edit", UserLive.Index, :edit
+
+ live "/users/:id", UserLive.Show, :show
+ live "/users/:id/show/edit", UserLive.Show, :edit
+ end
+
+ # Other scopes may use custom stacks.
+ # scope "/api", DemoWeb do
+ # pipe_through :api
+ # end
+
+ # Enables LiveDashboard only for development
+ #
+ # If you want to use the LiveDashboard in production, you should put
+ # it behind authentication and allow only admins to access it.
+ # If your application does not have an admins-only section yet,
+ # you can use Plug.BasicAuth to set up some basic authentication
+ # as long as you are also using SSL (which you should anyway).
+ if Mix.env() in [:dev, :test] do
+ import Phoenix.LiveDashboard.Router
+
+ scope "/" do
+ pipe_through :browser
+
+ live_dashboard "/dashboard", metrics: DemoWeb.Telemetry
+ end
+ end
+
+ # Enables the Swoosh mailbox preview in development.
+ #
+ # Note that preview only shows emails that were sent by the same
+ # node running the Phoenix server.
+ if Mix.env() == :dev do
+ scope "/dev" do
+ pipe_through :browser
+
+ forward "/mailbox", Plug.Swoosh.MailboxPreview
+ end
+ end
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/telemetry.ex b/examples/basic_phoenix_ecto/lib/demo_web/telemetry.ex
new file mode 100644
index 0000000..b11369c
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/telemetry.ex
@@ -0,0 +1,71 @@
+defmodule DemoWeb.Telemetry do
+ use Supervisor
+ import Telemetry.Metrics
+
+ def start_link(arg) do
+ Supervisor.start_link(__MODULE__, arg, name: __MODULE__)
+ end
+
+ @impl true
+ def init(_arg) do
+ children = [
+ # Telemetry poller will execute the given period measurements
+ # every 10_000ms. Learn more here: https://hexdocs.pm/telemetry_metrics
+ {:telemetry_poller, measurements: periodic_measurements(), period: 10_000}
+ # Add reporters as children of your supervision tree.
+ # {Telemetry.Metrics.ConsoleReporter, metrics: metrics()}
+ ]
+
+ Supervisor.init(children, strategy: :one_for_one)
+ end
+
+ def metrics do
+ [
+ # Phoenix Metrics
+ summary("phoenix.endpoint.stop.duration",
+ unit: {:native, :millisecond}
+ ),
+ summary("phoenix.router_dispatch.stop.duration",
+ tags: [:route],
+ unit: {:native, :millisecond}
+ ),
+
+ # Database Metrics
+ summary("demo.repo.query.total_time",
+ unit: {:native, :millisecond},
+ description: "The sum of the other measurements"
+ ),
+ summary("demo.repo.query.decode_time",
+ unit: {:native, :millisecond},
+ description: "The time spent decoding the data received from the database"
+ ),
+ summary("demo.repo.query.query_time",
+ unit: {:native, :millisecond},
+ description: "The time spent executing the query"
+ ),
+ summary("demo.repo.query.queue_time",
+ unit: {:native, :millisecond},
+ description: "The time spent waiting for a database connection"
+ ),
+ summary("demo.repo.query.idle_time",
+ unit: {:native, :millisecond},
+ description:
+ "The time the connection spent waiting before being checked out for the query"
+ ),
+
+ # VM Metrics
+ summary("vm.memory.total", unit: {:byte, :kilobyte}),
+ summary("vm.total_run_queue_lengths.total"),
+ summary("vm.total_run_queue_lengths.cpu"),
+ summary("vm.total_run_queue_lengths.io")
+ ]
+ end
+
+ defp periodic_measurements do
+ [
+ # A module, function and arguments to be invoked periodically.
+ # This function must call :telemetry.execute/3 and a metric must be added above.
+ # {DemoWeb, :count_users, []}
+ ]
+ end
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/templates/layout/app.html.heex b/examples/basic_phoenix_ecto/lib/demo_web/templates/layout/app.html.heex
new file mode 100644
index 0000000..169aed9
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/templates/layout/app.html.heex
@@ -0,0 +1,5 @@
+
+
+
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/templates/post/index.html.heex b/examples/basic_phoenix_ecto/lib/demo_web/templates/post/index.html.heex
new file mode 100644
index 0000000..d9dda04
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/templates/post/index.html.heex
@@ -0,0 +1,28 @@
+
Listing Posts
+
+
+
+
+
Title
+
Body
+
+
+
+
+
+<%= for post <- @posts do %>
+
+
<%= post.title %>
+
<%= post.body %>
+
+
+ <%= link "Show", to: Routes.post_path(@conn, :show, post) %>
+ <%= link "Edit", to: Routes.post_path(@conn, :edit, post) %>
+ <%= link "Delete", to: Routes.post_path(@conn, :delete, post), method: :delete, data: [confirm: "Are you sure?"] %>
+
+
+<% end %>
+
+
+
+<%= link "New Post", to: Routes.post_path(@conn, :new) %>
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/templates/post/new.html.heex b/examples/basic_phoenix_ecto/lib/demo_web/templates/post/new.html.heex
new file mode 100644
index 0000000..290286d
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/templates/post/new.html.heex
@@ -0,0 +1,5 @@
+
New Post
+
+<%= render "form.html", Map.put(assigns, :action, Routes.post_path(@conn, :create)) %>
+
+<%= link "Back", to: Routes.post_path(@conn, :index) %>
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/templates/post/show.html.heex b/examples/basic_phoenix_ecto/lib/demo_web/templates/post/show.html.heex
new file mode 100644
index 0000000..3bc7bcb
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/templates/post/show.html.heex
@@ -0,0 +1,18 @@
+
Show Post
+
+
+
+
+ Title:
+ <%= @post.title %>
+
+
+
+ Body:
+ <%= @post.body %>
+
+
+
+
+<%= link "Edit", to: Routes.post_path(@conn, :edit, @post) %> |
+<%= link "Back", to: Routes.post_path(@conn, :index) %>
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/views/error_helpers.ex b/examples/basic_phoenix_ecto/lib/demo_web/views/error_helpers.ex
new file mode 100644
index 0000000..430582e
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/views/error_helpers.ex
@@ -0,0 +1,47 @@
+defmodule DemoWeb.ErrorHelpers do
+ @moduledoc """
+ Conveniences for translating and building error messages.
+ """
+
+ use Phoenix.HTML
+
+ @doc """
+ Generates tag for inlined form input errors.
+ """
+ def error_tag(form, field) do
+ Enum.map(Keyword.get_values(form.errors, field), fn error ->
+ content_tag(:span, translate_error(error),
+ class: "invalid-feedback",
+ phx_feedback_for: input_name(form, field)
+ )
+ end)
+ end
+
+ @doc """
+ Translates an error message using gettext.
+ """
+ def translate_error({msg, opts}) do
+ # When using gettext, we typically pass the strings we want
+ # to translate as a static argument:
+ #
+ # # Translate "is invalid" in the "errors" domain
+ # dgettext("errors", "is invalid")
+ #
+ # # Translate the number of files with plural rules
+ # dngettext("errors", "1 file", "%{count} files", count)
+ #
+ # Because the error messages we show in our forms and APIs
+ # are defined inside Ecto, we need to translate them dynamically.
+ # This requires us to call the Gettext module passing our gettext
+ # backend as first argument.
+ #
+ # Note we use the "errors" domain, which means translations
+ # should be written to the errors.po file. The :count option is
+ # set by Ecto and indicates we should also apply plural rules.
+ if count = opts[:count] do
+ Gettext.dngettext(DemoWeb.Gettext, "errors", msg, msg, count, opts)
+ else
+ Gettext.dgettext(DemoWeb.Gettext, "errors", msg, opts)
+ end
+ end
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/views/error_view.ex b/examples/basic_phoenix_ecto/lib/demo_web/views/error_view.ex
new file mode 100644
index 0000000..c0ccfcb
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/views/error_view.ex
@@ -0,0 +1,16 @@
+defmodule DemoWeb.ErrorView do
+ use DemoWeb, :view
+
+ # If you want to customize a particular status code
+ # for a certain format, you may uncomment below.
+ # def render("500.html", _assigns) do
+ # "Internal Server Error"
+ # end
+
+ # By default, Phoenix returns the status message from
+ # the template name. For example, "404.html" becomes
+ # "Not Found".
+ def template_not_found(template, _assigns) do
+ Phoenix.Controller.status_message_from_template(template)
+ end
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/views/layout_view.ex b/examples/basic_phoenix_ecto/lib/demo_web/views/layout_view.ex
new file mode 100644
index 0000000..349ef80
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/views/layout_view.ex
@@ -0,0 +1,7 @@
+defmodule DemoWeb.LayoutView do
+ use DemoWeb, :view
+
+ # Phoenix LiveDashboard is available only in development by default,
+ # so we instruct Elixir to not warn if the dashboard route is missing.
+ @compile {:no_warn_undefined, {Routes, :live_dashboard_path, 2}}
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/views/page_view.ex b/examples/basic_phoenix_ecto/lib/demo_web/views/page_view.ex
new file mode 100644
index 0000000..1d32e3c
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/views/page_view.ex
@@ -0,0 +1,3 @@
+defmodule DemoWeb.PageView do
+ use DemoWeb, :view
+end
diff --git a/examples/basic_phoenix_ecto/lib/demo_web/views/post_view.ex b/examples/basic_phoenix_ecto/lib/demo_web/views/post_view.ex
new file mode 100644
index 0000000..58809e0
--- /dev/null
+++ b/examples/basic_phoenix_ecto/lib/demo_web/views/post_view.ex
@@ -0,0 +1,3 @@
+defmodule DemoWeb.PostView do
+ use DemoWeb, :view
+end
diff --git a/examples/basic_phoenix_ecto/mix.exs b/examples/basic_phoenix_ecto/mix.exs
new file mode 100644
index 0000000..ca8bdb7
--- /dev/null
+++ b/examples/basic_phoenix_ecto/mix.exs
@@ -0,0 +1,74 @@
+defmodule Demo.MixProject do
+ use Mix.Project
+
+ def project do
+ [
+ app: :demo,
+ version: "0.1.0",
+ elixir: "~> 1.12",
+ elixirc_paths: elixirc_paths(Mix.env()),
+ compilers: [:gettext] ++ Mix.compilers(),
+ start_permanent: Mix.env() == :prod,
+ aliases: aliases(),
+ deps: deps()
+ ]
+ end
+
+ # Configuration for the OTP application.
+ #
+ # Type `mix help compile.app` for more information.
+ def application do
+ [
+ mod: {Demo.Application, []},
+ extra_applications: [:logger, :runtime_tools]
+ ]
+ end
+
+ # Specifies which paths to compile per environment.
+ defp elixirc_paths(:test), do: ["lib", "test/support"]
+ defp elixirc_paths(_), do: ["lib"]
+
+ # Specifies your project dependencies.
+ #
+ # Type `mix help deps` for examples and options.
+ defp deps do
+ [
+ {:phoenix, "~> 1.6.6"},
+ {:phoenix_ecto, "~> 4.4"},
+ {:ecto_sql, "~> 3.6"},
+ {:postgrex, ">= 0.0.0"},
+ {:phoenix_html, "~> 3.0"},
+ {:phoenix_live_reload, "~> 1.2", only: :dev},
+ {:phoenix_live_view, "~> 0.17.5"},
+ {:floki, ">= 0.30.0", only: :test},
+ {:phoenix_live_dashboard, "~> 0.6"},
+ {:esbuild, "~> 0.3", runtime: Mix.env() == :dev},
+ {:swoosh, "~> 1.3"},
+ {:telemetry_metrics, "~> 0.6"},
+ {:telemetry_poller, "~> 1.0"},
+ {:gettext, "~> 0.18"},
+ {:jason, "~> 1.2"},
+ {:plug_cowboy, "~> 2.5"},
+
+ {:opentelemetry_phoenix, "~> 1.0.0-rc.7"},
+ {:opentelemetry_ecto, "~> 1.0.0-rc.5"},
+ {:opentelemetry_exporter, "~> 1.0.0"}
+ ]
+ end
+
+ # Aliases are shortcuts or tasks specific to the current project.
+ # For example, to install project dependencies and perform other setup tasks, run:
+ #
+ # $ mix setup
+ #
+ # See the documentation for `Mix` for more info on aliases.
+ defp aliases do
+ [
+ setup: ["deps.get", "ecto.setup"],
+ "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
+ "ecto.reset": ["ecto.drop", "ecto.setup"],
+ test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"],
+ "assets.deploy": ["esbuild default --minify", "phx.digest"]
+ ]
+ end
+end
diff --git a/examples/basic_phoenix_ecto/mix.lock b/examples/basic_phoenix_ecto/mix.lock
new file mode 100644
index 0000000..ebc9ff1
--- /dev/null
+++ b/examples/basic_phoenix_ecto/mix.lock
@@ -0,0 +1,50 @@
+%{
+ "acceptor_pool": {:hex, :acceptor_pool, "1.0.0", "43c20d2acae35f0c2bcd64f9d2bde267e459f0f3fd23dab26485bf518c281b21", [:rebar3], [], "hexpm", "0cbcd83fdc8b9ad2eee2067ef8b91a14858a5883cb7cd800e6fcd5803e158788"},
+ "castore": {:hex, :castore, "0.1.14", "3f6d7c7c1574c402fef29559d3f1a7389ba3524bc6a090a5e9e6abc3af65dcca", [:mix], [], "hexpm", "b34af542eadb727e6c8b37fdf73e18b2e02eb483a4ea0b52fd500bc23f052b7b"},
+ "chatterbox": {:hex, :ts_chatterbox, "0.11.0", "b8f372c706023eb0de5bf2976764edb27c70fe67052c88c1f6a66b3a5626847f", [:rebar3], [{:hpack, "~>0.2.3", [hex: :hpack_erl, repo: "hexpm", optional: false]}], "hexpm", "722fe2bad52913ab7e87d849fc6370375f0c961ffb2f0b5e6d647c9170c382a6"},
+ "connection": {:hex, :connection, "1.1.0", "ff2a49c4b75b6fb3e674bfc5536451607270aac754ffd1bdfe175abe4a6d7a68", [:mix], [], "hexpm", "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"},
+ "cowboy": {:hex, :cowboy, "2.9.0", "865dd8b6607e14cf03282e10e934023a1bd8be6f6bacf921a7e2a96d800cd452", [:make, :rebar3], [{:cowlib, "2.11.0", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "1.8.0", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm", "2c729f934b4e1aa149aff882f57c6372c15399a20d54f65c8d67bef583021bde"},
+ "cowboy_telemetry": {:hex, :cowboy_telemetry, "0.4.0", "f239f68b588efa7707abce16a84d0d2acf3a0f50571f8bb7f56a15865aae820c", [:rebar3], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7d98bac1ee4565d31b62d59f8823dfd8356a169e7fcbb83831b8a5397404c9de"},
+ "cowlib": {:hex, :cowlib, "2.11.0", "0b9ff9c346629256c42ebe1eeb769a83c6cb771a6ee5960bd110ab0b9b872063", [:make, :rebar3], [], "hexpm", "2b3e9da0b21c4565751a6d4901c20d1b4cc25cbb7fd50d91d2ab6dd287bc86a9"},
+ "ctx": {:hex, :ctx, "0.6.0", "8ff88b70e6400c4df90142e7f130625b82086077a45364a78d208ed3ed53c7fe", [:rebar3], [], "hexpm", "a14ed2d1b67723dbebbe423b28d7615eb0bdcba6ff28f2d1f1b0a7e1d4aa5fc2"},
+ "db_connection": {:hex, :db_connection, "2.4.1", "6411f6e23f1a8b68a82fa3a36366d4881f21f47fc79a9efb8c615e62050219da", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "ea36d226ec5999781a9a8ad64e5d8c4454ecedc7a4d643e4832bf08efca01f00"},
+ "decimal": {:hex, :decimal, "2.0.0", "a78296e617b0f5dd4c6caf57c714431347912ffb1d0842e998e9792b5642d697", [:mix], [], "hexpm", "34666e9c55dea81013e77d9d87370fe6cb6291d1ef32f46a1600230b1d44f577"},
+ "ecto": {:hex, :ecto, "3.7.1", "a20598862351b29f80f285b21ec5297da1181c0442687f9b8329f0445d228892", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "d36e5b39fc479e654cffd4dbe1865d9716e4a9b6311faff799b6f90ab81b8638"},
+ "ecto_sql": {:hex, :ecto_sql, "3.7.1", "8de624ef50b2a8540252d8c60506379fbbc2707be1606853df371cf53df5d053", [:mix], [{:db_connection, "~> 2.2", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.7.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:myxql, "~> 0.4.0 or ~> 0.5.0", [hex: :myxql, repo: "hexpm", optional: true]}, {:postgrex, "~> 0.15.0 or ~> 1.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:tds, "~> 2.1.1 or ~> 2.2", [hex: :tds, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.0 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "2b42a32e2ce92f64aba5c88617891ab3b0ba34f3f3a503fa20009eae1a401c81"},
+ "esbuild": {:hex, :esbuild, "0.4.0", "9f17db148aead4cf1e6e6a584214357287a93407b5fb51a031f122b61385d4c2", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "b61e4e6b92ffe45e4ee4755a22de6211a67c67987dc02afb35a425a0add1d447"},
+ "file_system": {:hex, :file_system, "0.2.10", "fb082005a9cd1711c05b5248710f8826b02d7d1784e7c3451f9c1231d4fc162d", [:mix], [], "hexpm", "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc"},
+ "floki": {:hex, :floki, "0.32.0", "f915dc15258bc997d49be1f5ef7d3992f8834d6f5695270acad17b41f5bcc8e2", [:mix], [{:html_entities, "~> 0.5.0", [hex: :html_entities, repo: "hexpm", optional: false]}], "hexpm", "1c5a91cae1fd8931c26a4826b5e2372c284813904c8bacb468b5de39c7ececbd"},
+ "gettext": {:hex, :gettext, "0.19.0", "6909d61b38bb33339558f128f8af5913d5d5fe304a770217bf352b1620fb7ec4", [:mix], [], "hexpm", "3f7a274f52ebda9bb6655dfeda3d6b0dc4537ae51ce41dcccc7f73ca7379ad5e"},
+ "gproc": {:hex, :gproc, "0.8.0", "cea02c578589c61e5341fce149ea36ccef236cc2ecac8691fba408e7ea77ec2f", [:rebar3], [], "hexpm", "580adafa56463b75263ef5a5df4c86af321f68694e7786cb057fd805d1e2a7de"},
+ "grpcbox": {:hex, :grpcbox, "0.14.0", "3eb321bcd2275baf8b54cf381feb7b0559a50c02544de28fda039c7f2f9d1a7a", [:rebar3], [{:acceptor_pool, "~>1.0.0", [hex: :acceptor_pool, repo: "hexpm", optional: false]}, {:chatterbox, "~>0.11.0", [hex: :ts_chatterbox, repo: "hexpm", optional: false]}, {:ctx, "~>0.6.0", [hex: :ctx, repo: "hexpm", optional: false]}, {:gproc, "~>0.8.0", [hex: :gproc, repo: "hexpm", optional: false]}], "hexpm", "e24159b7b6d3f9869bbe528845c0125fed2259366ba908fd04a1f45fe81d0660"},
+ "hpack": {:hex, :hpack_erl, "0.2.3", "17670f83ff984ae6cd74b1c456edde906d27ff013740ee4d9efaa4f1bf999633", [:rebar3], [], "hexpm", "06f580167c4b8b8a6429040df36cc93bba6d571faeaec1b28816523379cbb23a"},
+ "html_entities": {:hex, :html_entities, "0.5.2", "9e47e70598da7de2a9ff6af8758399251db6dbb7eebe2b013f2bbd2515895c3c", [:mix], [], "hexpm", "c53ba390403485615623b9531e97696f076ed415e8d8058b1dbaa28181f4fdcc"},
+ "jason": {:hex, :jason, "1.3.0", "fa6b82a934feb176263ad2df0dbd91bf633d4a46ebfdffea0c8ae82953714946", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "53fc1f51255390e0ec7e50f9cb41e751c260d065dcba2bf0d08dc51a4002c2ac"},
+ "mime": {:hex, :mime, "2.0.2", "0b9e1a4c840eafb68d820b0e2158ef5c49385d17fb36855ac6e7e087d4b1dcc5", [:mix], [], "hexpm", "e6a3f76b4c277739e36c2e21a2c640778ba4c3846189d5ab19f97f126df5f9b7"},
+ "opentelemetry": {:hex, :opentelemetry, "1.0.0", "6e98f4a9230681b2e4c88d45783ce1c02d671ffc0b5ac0cba69a34a3f5ada8d8", [:rebar3], [{:opentelemetry_api, "~> 1.0.0", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}], "hexpm", "08d8697740f70594d05067cb62a0a8845ff568b2d47e1f8c78c46708ab58a74f"},
+ "opentelemetry_api": {:hex, :opentelemetry_api, "1.0.0", "6e501f750ead189f35aed07eb8023fa6655fca12f913a196102f67db4ed5172c", [:mix, :rebar3], [], "hexpm", "ac51520bde21fdea7f82cea9236ce4e88a21281c22bc23b0f1fa3b28b4352fcf"},
+ "opentelemetry_ecto": {:hex, :opentelemetry_ecto, "1.0.0-rc.5", "b674ddc948fc1dd2fdc1e7fb0797c5d610d60ee5969a8424af36f582b8b0086c", [:mix], [{:opentelemetry_api, "~> 1.0", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "211fa6776abfb8be54bdd57206c99541c1955e6fe68eb5ee4611dc697240deed"},
+ "opentelemetry_exporter": {:hex, :opentelemetry_exporter, "1.0.0", "12fd928e72dec8108d40214a667e7a90026827d6268db678617c9e40ec3dc931", [:rebar3], [{:grpcbox, ">= 0.0.0", [hex: :grpcbox, repo: "hexpm", optional: false]}, {:opentelemetry, "~> 1.0", [hex: :opentelemetry, repo: "hexpm", optional: false]}, {:opentelemetry_api, "~> 1.0", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:tls_certificate_check, "~> 1.11", [hex: :tls_certificate_check, repo: "hexpm", optional: false]}], "hexpm", "e2d2377abfb823cc99c1b68b4ce31df1ff1ce63e0c7bdbee7a7527e2d825168d"},
+ "opentelemetry_phoenix": {:hex, :opentelemetry_phoenix, "1.0.0-rc.7", "b8829206cbb1539cb8e516908570b92cba5d7d5fd57319fa823e71e385515e71", [:mix], [{:opentelemetry_api, "~> 1.0", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:opentelemetry_telemetry, "~> 1.0.0-beta.7", [hex: :opentelemetry_telemetry, repo: "hexpm", optional: false]}, {:plug, ">= 1.11.0", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "233a02e1f485ad106e8bbb8d9cefff64305bf2cff55a68c1d9bda3b54d0460c5"},
+ "opentelemetry_telemetry": {:hex, :opentelemetry_telemetry, "1.0.0-beta.7", "ba1df62515aed63f99a80ddf17e7a3873d1f686f23598edebf1633942772856e", [:mix, :rebar3], [{:opentelemetry_api, "~> 1.0", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:telemetry_registry, "~> 0.3.0", [hex: :telemetry_registry, repo: "hexpm", optional: false]}], "hexpm", "480f4fa1e992d597f931e7bc9e68478e8d904ad84489d2c5ca6eb6d48bbd7801"},
+ "phoenix": {:hex, :phoenix, "1.6.6", "281c8ce8dccc9f60607346b72cdfc597c3dde134dd9df28dff08282f0b751754", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 1.0", [hex: :phoenix_view, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.2", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "807bd646e64cd9dc83db016199715faba72758e6db1de0707eef0a2da4924364"},
+ "phoenix_ecto": {:hex, :phoenix_ecto, "4.4.0", "0672ed4e4808b3fbed494dded89958e22fb882de47a97634c0b13e7b0b5f7720", [:mix], [{:ecto, "~> 3.3", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "09864e558ed31ee00bd48fcc1d4fc58ae9678c9e81649075431e69dbabb43cc1"},
+ "phoenix_html": {:hex, :phoenix_html, "3.2.0", "1c1219d4b6cb22ac72f12f73dc5fad6c7563104d083f711c3fcd8551a1f4ae11", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "36ec97ba56d25c0136ef1992c37957e4246b649d620958a1f9fa86165f8bc54f"},
+ "phoenix_live_dashboard": {:hex, :phoenix_live_dashboard, "0.6.2", "0769470265eb13af01b5001b29cb935f4710d6adaa1ffc18417a570a337a2f0f", [:mix], [{:ecto, "~> 3.6.2 or ~> 3.7", [hex: :ecto, repo: "hexpm", optional: true]}, {:ecto_mysql_extras, "~> 0.3", [hex: :ecto_mysql_extras, repo: "hexpm", optional: true]}, {:ecto_psql_extras, "~> 0.7", [hex: :ecto_psql_extras, repo: "hexpm", optional: true]}, {:mime, "~> 1.6 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:phoenix_live_view, "~> 0.17.1", [hex: :phoenix_live_view, repo: "hexpm", optional: false]}, {:telemetry_metrics, "~> 0.6.0", [hex: :telemetry_metrics, repo: "hexpm", optional: false]}], "hexpm", "5bc6c6b38a2ca8b5020b442322fcee6afd5e641637a0b1fb059d4bd89bc58e7b"},
+ "phoenix_live_reload": {:hex, :phoenix_live_reload, "1.3.3", "3a53772a6118d5679bf50fc1670505a290e32a1d195df9e069d8c53ab040c054", [:mix], [{:file_system, "~> 0.2.1 or ~> 0.3", [hex: :file_system, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.4", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "766796676e5f558dbae5d1bdb066849673e956005e3730dfd5affd7a6da4abac"},
+ "phoenix_live_view": {:hex, :phoenix_live_view, "0.17.5", "63f52a6f9f6983f04e424586ff897c016ecc5e4f8d1e2c22c2887af1c57215d8", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix, "~> 1.5.9 or ~> 1.6.0", [hex: :phoenix, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 3.1", [hex: :phoenix_html, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "c5586e6a3d4df71b8214c769d4f5eb8ece2b4001711a7ca0f97323c36958b0e3"},
+ "phoenix_pubsub": {:hex, :phoenix_pubsub, "2.0.0", "a1ae76717bb168cdeb10ec9d92d1480fec99e3080f011402c0a2d68d47395ffb", [:mix], [], "hexpm", "c52d948c4f261577b9c6fa804be91884b381a7f8f18450c5045975435350f771"},
+ "phoenix_view": {:hex, :phoenix_view, "1.1.0", "149f053830ec3c19a2a8a67c208885a26e4c2b92cc4a9d54e03b633d68ef9add", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}], "hexpm", "dd219f768b3d97a224ed11e8a83f4fd0f3bd490434d3950d7c51a2e597a762f1"},
+ "plug": {:hex, :plug, "1.12.1", "645678c800601d8d9f27ad1aebba1fdb9ce5b2623ddb961a074da0b96c35187d", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "d57e799a777bc20494b784966dc5fbda91eb4a09f571f76545b72a634ce0d30b"},
+ "plug_cowboy": {:hex, :plug_cowboy, "2.5.2", "62894ccd601cf9597e2c23911ff12798a8a18d237e9739f58a6b04e4988899fe", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.7", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "ea6e87f774c8608d60c8d34022a7d073bd7680a0a013f049fc62bf35efea1044"},
+ "plug_crypto": {:hex, :plug_crypto, "1.2.2", "05654514ac717ff3a1843204b424477d9e60c143406aa94daf2274fdd280794d", [:mix], [], "hexpm", "87631c7ad914a5a445f0a3809f99b079113ae4ed4b867348dd9eec288cecb6db"},
+ "postgrex": {:hex, :postgrex, "0.15.13", "7794e697481799aee8982688c261901de493eb64451feee6ea58207d7266d54a", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "3ffb76e1a97cfefe5c6a95632a27ffb67f28871c9741fb585f9d1c3cd2af70f1"},
+ "ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"},
+ "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.6", "cf344f5692c82d2cd7554f5ec8fd961548d4fd09e7d22f5b62482e5aeaebd4b0", [:make, :mix, :rebar3], [], "hexpm", "bdb0d2471f453c88ff3908e7686f86f9be327d065cc1ec16fa4540197ea04680"},
+ "swoosh": {:hex, :swoosh, "1.5.2", "c246e0038367bf9ac3b66715151930a7215eb7427c242cc5206fc59fa344a7dc", [:mix], [{:cowboy, "~> 1.1 or ~> 2.4", [hex: :cowboy, repo: "hexpm", optional: true]}, {:finch, "~> 0.6", [hex: :finch, repo: "hexpm", optional: true]}, {:gen_smtp, "~> 0.13 or ~> 1.0", [hex: :gen_smtp, repo: "hexpm", optional: true]}, {:hackney, "~> 1.9", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mail, "~> 0.2", [hex: :mail, repo: "hexpm", optional: true]}, {:mime, "~> 1.1 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_cowboy, ">= 1.0.0", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "fc34b2c14afaa6e2cd92c829492536887a00ae625e404e40469926949b029605"},
+ "telemetry": {:hex, :telemetry, "1.0.0", "0f453a102cdf13d506b7c0ab158324c337c41f1cc7548f0bc0e130bbf0ae9452", [:rebar3], [], "hexpm", "73bc09fa59b4a0284efb4624335583c528e07ec9ae76aca96ea0673850aec57a"},
+ "telemetry_metrics": {:hex, :telemetry_metrics, "0.6.1", "315d9163a1d4660aedc3fee73f33f1d355dcc76c5c3ab3d59e76e3edf80eef1f", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7be9e0871c41732c233be71e4be11b96e56177bf15dde64a8ac9ce72ac9834c6"},
+ "telemetry_poller": {:hex, :telemetry_poller, "1.0.0", "db91bb424e07f2bb6e73926fcafbfcbcb295f0193e0a00e825e589a0a47e8453", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "b3a24eafd66c3f42da30fc3ca7dda1e9d546c12250a2d60d7b81d264fbec4f6e"},
+ "telemetry_registry": {:hex, :telemetry_registry, "0.3.0", "6768f151ea53fc0fbca70dbff5b20a8d663ee4e0c0b2ae589590e08658e76f1e", [:mix, :rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "492e2adbc609f3e79ece7f29fec363a97a2c484ac78a83098535d6564781e917"},
+ "tls_certificate_check": {:hex, :tls_certificate_check, "1.11.0", "609dcd503f31170f0799dac380eb0e086388cf918fc769aaa60ddd6bbf575218", [:rebar3], [{:ssl_verify_fun, "1.1.6", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}], "hexpm", "4ab962212ef7c87482619cb298e1fe06e047b57f0bd58cc417b3b299eb8d036e"},
+}
diff --git a/examples/basic_phoenix_ecto/otel-collector-config.yaml b/examples/basic_phoenix_ecto/otel-collector-config.yaml
new file mode 100644
index 0000000..4d26be1
--- /dev/null
+++ b/examples/basic_phoenix_ecto/otel-collector-config.yaml
@@ -0,0 +1,40 @@
+receivers:
+ otlp:
+ protocols:
+ grpc:
+ http:
+processors:
+ batch:
+ send_batch_size: 1024
+ timeout: 5s
+exporters:
+ otlp:
+ # Uncomment below for using Honeycomb
+ # endpoint: "api.honeycomb.io:443"
+ # headers:
+ # "x-honeycomb-team": ""
+ # "x-honeycomb-dataset": ""
+ # Uncomment below for using Lightstep
+ # endpoint: ingest.lightstep.com:443
+ # headers:
+ # "lightstep-access-token": ""
+ zipkin:
+ endpoint: "http://zipkin:9411/api/v2/spans"
+ jaeger:
+ endpoint: jaeger-all-in-one:14250
+ tls:
+ insecure: true
+extensions:
+ zpages: {}
+service:
+ extensions: [zpages]
+ pipelines:
+ traces:
+ receivers: [otlp]
+ processors: [batch]
+ exporters: [zipkin, jaeger]
+ # Add 'otlp' if you're exporting to Honeycomb
+ # or Lightstep
+ # exporters: [zipkin, jaeger, otlp]
+
+
diff --git a/examples/basic_phoenix_ecto/priv/gettext/en/LC_MESSAGES/errors.po b/examples/basic_phoenix_ecto/priv/gettext/en/LC_MESSAGES/errors.po
new file mode 100644
index 0000000..844c4f5
--- /dev/null
+++ b/examples/basic_phoenix_ecto/priv/gettext/en/LC_MESSAGES/errors.po
@@ -0,0 +1,112 @@
+## `msgid`s in this file come from POT (.pot) files.
+##
+## Do not add, change, or remove `msgid`s manually here as
+## they're tied to the ones in the corresponding POT file
+## (with the same domain).
+##
+## Use `mix gettext.extract --merge` or `mix gettext.merge`
+## to merge POT files into PO files.
+msgid ""
+msgstr ""
+"Language: en\n"
+
+## From Ecto.Changeset.cast/4
+msgid "can't be blank"
+msgstr ""
+
+## From Ecto.Changeset.unique_constraint/3
+msgid "has already been taken"
+msgstr ""
+
+## From Ecto.Changeset.put_change/3
+msgid "is invalid"
+msgstr ""
+
+## From Ecto.Changeset.validate_acceptance/3
+msgid "must be accepted"
+msgstr ""
+
+## From Ecto.Changeset.validate_format/3
+msgid "has invalid format"
+msgstr ""
+
+## From Ecto.Changeset.validate_subset/3
+msgid "has an invalid entry"
+msgstr ""
+
+## From Ecto.Changeset.validate_exclusion/3
+msgid "is reserved"
+msgstr ""
+
+## From Ecto.Changeset.validate_confirmation/3
+msgid "does not match confirmation"
+msgstr ""
+
+## From Ecto.Changeset.no_assoc_constraint/3
+msgid "is still associated with this entry"
+msgstr ""
+
+msgid "are still associated with this entry"
+msgstr ""
+
+## From Ecto.Changeset.validate_length/3
+msgid "should have %{count} item(s)"
+msgid_plural "should have %{count} item(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be %{count} character(s)"
+msgid_plural "should be %{count} character(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be %{count} byte(s)"
+msgid_plural "should be %{count} byte(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should have at least %{count} item(s)"
+msgid_plural "should have at least %{count} item(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be at least %{count} character(s)"
+msgid_plural "should be at least %{count} character(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be at least %{count} byte(s)"
+msgid_plural "should be at least %{count} byte(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should have at most %{count} item(s)"
+msgid_plural "should have at most %{count} item(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be at most %{count} character(s)"
+msgid_plural "should be at most %{count} character(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be at most %{count} byte(s)"
+msgid_plural "should be at most %{count} byte(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+## From Ecto.Changeset.validate_number/3
+msgid "must be less than %{number}"
+msgstr ""
+
+msgid "must be greater than %{number}"
+msgstr ""
+
+msgid "must be less than or equal to %{number}"
+msgstr ""
+
+msgid "must be greater than or equal to %{number}"
+msgstr ""
+
+msgid "must be equal to %{number}"
+msgstr ""
diff --git a/examples/basic_phoenix_ecto/priv/gettext/errors.pot b/examples/basic_phoenix_ecto/priv/gettext/errors.pot
new file mode 100644
index 0000000..39a220b
--- /dev/null
+++ b/examples/basic_phoenix_ecto/priv/gettext/errors.pot
@@ -0,0 +1,95 @@
+## This is a PO Template file.
+##
+## `msgid`s here are often extracted from source code.
+## Add new translations manually only if they're dynamic
+## translations that can't be statically extracted.
+##
+## Run `mix gettext.extract` to bring this file up to
+## date. Leave `msgstr`s empty as changing them here has no
+## effect: edit them in PO (`.po`) files instead.
+
+## From Ecto.Changeset.cast/4
+msgid "can't be blank"
+msgstr ""
+
+## From Ecto.Changeset.unique_constraint/3
+msgid "has already been taken"
+msgstr ""
+
+## From Ecto.Changeset.put_change/3
+msgid "is invalid"
+msgstr ""
+
+## From Ecto.Changeset.validate_acceptance/3
+msgid "must be accepted"
+msgstr ""
+
+## From Ecto.Changeset.validate_format/3
+msgid "has invalid format"
+msgstr ""
+
+## From Ecto.Changeset.validate_subset/3
+msgid "has an invalid entry"
+msgstr ""
+
+## From Ecto.Changeset.validate_exclusion/3
+msgid "is reserved"
+msgstr ""
+
+## From Ecto.Changeset.validate_confirmation/3
+msgid "does not match confirmation"
+msgstr ""
+
+## From Ecto.Changeset.no_assoc_constraint/3
+msgid "is still associated with this entry"
+msgstr ""
+
+msgid "are still associated with this entry"
+msgstr ""
+
+## From Ecto.Changeset.validate_length/3
+msgid "should be %{count} character(s)"
+msgid_plural "should be %{count} character(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should have %{count} item(s)"
+msgid_plural "should have %{count} item(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be at least %{count} character(s)"
+msgid_plural "should be at least %{count} character(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should have at least %{count} item(s)"
+msgid_plural "should have at least %{count} item(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should be at most %{count} character(s)"
+msgid_plural "should be at most %{count} character(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "should have at most %{count} item(s)"
+msgid_plural "should have at most %{count} item(s)"
+msgstr[0] ""
+msgstr[1] ""
+
+## From Ecto.Changeset.validate_number/3
+msgid "must be less than %{number}"
+msgstr ""
+
+msgid "must be greater than %{number}"
+msgstr ""
+
+msgid "must be less than or equal to %{number}"
+msgstr ""
+
+msgid "must be greater than or equal to %{number}"
+msgstr ""
+
+msgid "must be equal to %{number}"
+msgstr ""
diff --git a/examples/basic_phoenix_ecto/priv/repo/migrations/.formatter.exs b/examples/basic_phoenix_ecto/priv/repo/migrations/.formatter.exs
new file mode 100644
index 0000000..49f9151
--- /dev/null
+++ b/examples/basic_phoenix_ecto/priv/repo/migrations/.formatter.exs
@@ -0,0 +1,4 @@
+[
+ import_deps: [:ecto_sql],
+ inputs: ["*.exs"]
+]
diff --git a/examples/basic_phoenix_ecto/priv/repo/migrations/20220116091316_create_posts.exs b/examples/basic_phoenix_ecto/priv/repo/migrations/20220116091316_create_posts.exs
new file mode 100644
index 0000000..5d1bc9e
--- /dev/null
+++ b/examples/basic_phoenix_ecto/priv/repo/migrations/20220116091316_create_posts.exs
@@ -0,0 +1,12 @@
+defmodule Demo.Repo.Migrations.CreatePosts do
+ use Ecto.Migration
+
+ def change do
+ create table(:posts) do
+ add :title, :string
+ add :body, :text
+
+ timestamps()
+ end
+ end
+end
diff --git a/examples/basic_phoenix_ecto/priv/repo/migrations/20220116092821_create_users.exs b/examples/basic_phoenix_ecto/priv/repo/migrations/20220116092821_create_users.exs
new file mode 100644
index 0000000..de67452
--- /dev/null
+++ b/examples/basic_phoenix_ecto/priv/repo/migrations/20220116092821_create_users.exs
@@ -0,0 +1,11 @@
+defmodule Demo.Repo.Migrations.CreateUsers do
+ use Ecto.Migration
+
+ def change do
+ create table(:users) do
+ add :name, :string
+
+ timestamps()
+ end
+ end
+end
diff --git a/examples/basic_phoenix_ecto/priv/repo/seeds.exs b/examples/basic_phoenix_ecto/priv/repo/seeds.exs
new file mode 100644
index 0000000..7ad2f1a
--- /dev/null
+++ b/examples/basic_phoenix_ecto/priv/repo/seeds.exs
@@ -0,0 +1,11 @@
+# Script for populating the database. You can run it as:
+#
+# mix run priv/repo/seeds.exs
+#
+# Inside the script, you can read and write to any of your
+# repositories directly:
+#
+# Demo.Repo.insert!(%Demo.SomeSchema{})
+#
+# We recommend using the bang functions (`insert!`, `update!`
+# and so on) as they will fail if something goes wrong.
diff --git a/examples/basic_phoenix_ecto/priv/static/favicon.ico b/examples/basic_phoenix_ecto/priv/static/favicon.ico
new file mode 100644
index 0000000..73de524
Binary files /dev/null and b/examples/basic_phoenix_ecto/priv/static/favicon.ico differ
diff --git a/examples/basic_phoenix_ecto/priv/static/images/phoenix.png b/examples/basic_phoenix_ecto/priv/static/images/phoenix.png
new file mode 100644
index 0000000..9c81075
Binary files /dev/null and b/examples/basic_phoenix_ecto/priv/static/images/phoenix.png differ
diff --git a/examples/basic_phoenix_ecto/priv/static/robots.txt b/examples/basic_phoenix_ecto/priv/static/robots.txt
new file mode 100644
index 0000000..26e06b5
--- /dev/null
+++ b/examples/basic_phoenix_ecto/priv/static/robots.txt
@@ -0,0 +1,5 @@
+# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
+#
+# To ban all spiders from the entire site uncomment the next two lines:
+# User-agent: *
+# Disallow: /
diff --git a/examples/basic_phoenix_ecto/test/demo/accounts_test.exs b/examples/basic_phoenix_ecto/test/demo/accounts_test.exs
new file mode 100644
index 0000000..59050f3
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo/accounts_test.exs
@@ -0,0 +1,59 @@
+defmodule Demo.AccountsTest do
+ use Demo.DataCase
+
+ alias Demo.Accounts
+
+ describe "users" do
+ alias Demo.Accounts.User
+
+ import Demo.AccountsFixtures
+
+ @invalid_attrs %{name: nil}
+
+ test "list_users/0 returns all users" do
+ user = user_fixture()
+ assert Accounts.list_users() == [user]
+ end
+
+ test "get_user!/1 returns the user with given id" do
+ user = user_fixture()
+ assert Accounts.get_user!(user.id) == user
+ end
+
+ test "create_user/1 with valid data creates a user" do
+ valid_attrs = %{name: "some name"}
+
+ assert {:ok, %User{} = user} = Accounts.create_user(valid_attrs)
+ assert user.name == "some name"
+ end
+
+ test "create_user/1 with invalid data returns error changeset" do
+ assert {:error, %Ecto.Changeset{}} = Accounts.create_user(@invalid_attrs)
+ end
+
+ test "update_user/2 with valid data updates the user" do
+ user = user_fixture()
+ update_attrs = %{name: "some updated name"}
+
+ assert {:ok, %User{} = user} = Accounts.update_user(user, update_attrs)
+ assert user.name == "some updated name"
+ end
+
+ test "update_user/2 with invalid data returns error changeset" do
+ user = user_fixture()
+ assert {:error, %Ecto.Changeset{}} = Accounts.update_user(user, @invalid_attrs)
+ assert user == Accounts.get_user!(user.id)
+ end
+
+ test "delete_user/1 deletes the user" do
+ user = user_fixture()
+ assert {:ok, %User{}} = Accounts.delete_user(user)
+ assert_raise Ecto.NoResultsError, fn -> Accounts.get_user!(user.id) end
+ end
+
+ test "change_user/1 returns a user changeset" do
+ user = user_fixture()
+ assert %Ecto.Changeset{} = Accounts.change_user(user)
+ end
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/demo/blog_test.exs b/examples/basic_phoenix_ecto/test/demo/blog_test.exs
new file mode 100644
index 0000000..d556907
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo/blog_test.exs
@@ -0,0 +1,61 @@
+defmodule Demo.BlogTest do
+ use Demo.DataCase
+
+ alias Demo.Blog
+
+ describe "posts" do
+ alias Demo.Blog.Post
+
+ import Demo.BlogFixtures
+
+ @invalid_attrs %{body: nil, title: nil}
+
+ test "list_posts/0 returns all posts" do
+ post = post_fixture()
+ assert Blog.list_posts() == [post]
+ end
+
+ test "get_post!/1 returns the post with given id" do
+ post = post_fixture()
+ assert Blog.get_post!(post.id) == post
+ end
+
+ test "create_post/1 with valid data creates a post" do
+ valid_attrs = %{body: "some body", title: "some title"}
+
+ assert {:ok, %Post{} = post} = Blog.create_post(valid_attrs)
+ assert post.body == "some body"
+ assert post.title == "some title"
+ end
+
+ test "create_post/1 with invalid data returns error changeset" do
+ assert {:error, %Ecto.Changeset{}} = Blog.create_post(@invalid_attrs)
+ end
+
+ test "update_post/2 with valid data updates the post" do
+ post = post_fixture()
+ update_attrs = %{body: "some updated body", title: "some updated title"}
+
+ assert {:ok, %Post{} = post} = Blog.update_post(post, update_attrs)
+ assert post.body == "some updated body"
+ assert post.title == "some updated title"
+ end
+
+ test "update_post/2 with invalid data returns error changeset" do
+ post = post_fixture()
+ assert {:error, %Ecto.Changeset{}} = Blog.update_post(post, @invalid_attrs)
+ assert post == Blog.get_post!(post.id)
+ end
+
+ test "delete_post/1 deletes the post" do
+ post = post_fixture()
+ assert {:ok, %Post{}} = Blog.delete_post(post)
+ assert_raise Ecto.NoResultsError, fn -> Blog.get_post!(post.id) end
+ end
+
+ test "change_post/1 returns a post changeset" do
+ post = post_fixture()
+ assert %Ecto.Changeset{} = Blog.change_post(post)
+ end
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/demo_web/controllers/page_controller_test.exs b/examples/basic_phoenix_ecto/test/demo_web/controllers/page_controller_test.exs
new file mode 100644
index 0000000..f477198
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo_web/controllers/page_controller_test.exs
@@ -0,0 +1,8 @@
+defmodule DemoWeb.PageControllerTest do
+ use DemoWeb.ConnCase
+
+ test "GET /", %{conn: conn} do
+ conn = get(conn, "/")
+ assert html_response(conn, 200) =~ "Welcome to Phoenix!"
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/demo_web/controllers/post_controller_test.exs b/examples/basic_phoenix_ecto/test/demo_web/controllers/post_controller_test.exs
new file mode 100644
index 0000000..41b403a
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo_web/controllers/post_controller_test.exs
@@ -0,0 +1,84 @@
+defmodule DemoWeb.PostControllerTest do
+ use DemoWeb.ConnCase
+
+ import Demo.BlogFixtures
+
+ @create_attrs %{body: "some body", title: "some title"}
+ @update_attrs %{body: "some updated body", title: "some updated title"}
+ @invalid_attrs %{body: nil, title: nil}
+
+ describe "index" do
+ test "lists all posts", %{conn: conn} do
+ conn = get(conn, Routes.post_path(conn, :index))
+ assert html_response(conn, 200) =~ "Listing Posts"
+ end
+ end
+
+ describe "new post" do
+ test "renders form", %{conn: conn} do
+ conn = get(conn, Routes.post_path(conn, :new))
+ assert html_response(conn, 200) =~ "New Post"
+ end
+ end
+
+ describe "create post" do
+ test "redirects to show when data is valid", %{conn: conn} do
+ conn = post(conn, Routes.post_path(conn, :create), post: @create_attrs)
+
+ assert %{id: id} = redirected_params(conn)
+ assert redirected_to(conn) == Routes.post_path(conn, :show, id)
+
+ conn = get(conn, Routes.post_path(conn, :show, id))
+ assert html_response(conn, 200) =~ "Show Post"
+ end
+
+ test "renders errors when data is invalid", %{conn: conn} do
+ conn = post(conn, Routes.post_path(conn, :create), post: @invalid_attrs)
+ assert html_response(conn, 200) =~ "New Post"
+ end
+ end
+
+ describe "edit post" do
+ setup [:create_post]
+
+ test "renders form for editing chosen post", %{conn: conn, post: post} do
+ conn = get(conn, Routes.post_path(conn, :edit, post))
+ assert html_response(conn, 200) =~ "Edit Post"
+ end
+ end
+
+ describe "update post" do
+ setup [:create_post]
+
+ test "redirects when data is valid", %{conn: conn, post: post} do
+ conn = put(conn, Routes.post_path(conn, :update, post), post: @update_attrs)
+ assert redirected_to(conn) == Routes.post_path(conn, :show, post)
+
+ conn = get(conn, Routes.post_path(conn, :show, post))
+ assert html_response(conn, 200) =~ "some updated body"
+ end
+
+ test "renders errors when data is invalid", %{conn: conn, post: post} do
+ conn = put(conn, Routes.post_path(conn, :update, post), post: @invalid_attrs)
+ assert html_response(conn, 200) =~ "Edit Post"
+ end
+ end
+
+ describe "delete post" do
+ setup [:create_post]
+
+ test "deletes chosen post", %{conn: conn, post: post} do
+ conn = delete(conn, Routes.post_path(conn, :delete, post))
+ assert redirected_to(conn) == Routes.post_path(conn, :index)
+
+ assert_error_sent 404, fn ->
+ get(conn, Routes.post_path(conn, :show, post))
+ end
+ end
+ end
+
+ defp create_post(_) do
+ post = post_fixture()
+ %{post: post}
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/demo_web/live/user_live_test.exs b/examples/basic_phoenix_ecto/test/demo_web/live/user_live_test.exs
new file mode 100644
index 0000000..bcc687c
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo_web/live/user_live_test.exs
@@ -0,0 +1,110 @@
+defmodule DemoWeb.UserLiveTest do
+ use DemoWeb.ConnCase
+
+ import Phoenix.LiveViewTest
+ import Demo.AccountsFixtures
+
+ @create_attrs %{name: "some name"}
+ @update_attrs %{name: "some updated name"}
+ @invalid_attrs %{name: nil}
+
+ defp create_user(_) do
+ user = user_fixture()
+ %{user: user}
+ end
+
+ describe "Index" do
+ setup [:create_user]
+
+ test "lists all users", %{conn: conn, user: user} do
+ {:ok, _index_live, html} = live(conn, Routes.user_index_path(conn, :index))
+
+ assert html =~ "Listing Users"
+ assert html =~ user.name
+ end
+
+ test "saves new user", %{conn: conn} do
+ {:ok, index_live, _html} = live(conn, Routes.user_index_path(conn, :index))
+
+ assert index_live |> element("a", "New User") |> render_click() =~
+ "New User"
+
+ assert_patch(index_live, Routes.user_index_path(conn, :new))
+
+ assert index_live
+ |> form("#user-form", user: @invalid_attrs)
+ |> render_change() =~ "can't be blank"
+
+ {:ok, _, html} =
+ index_live
+ |> form("#user-form", user: @create_attrs)
+ |> render_submit()
+ |> follow_redirect(conn, Routes.user_index_path(conn, :index))
+
+ assert html =~ "User created successfully"
+ assert html =~ "some name"
+ end
+
+ test "updates user in listing", %{conn: conn, user: user} do
+ {:ok, index_live, _html} = live(conn, Routes.user_index_path(conn, :index))
+
+ assert index_live |> element("#user-#{user.id} a", "Edit") |> render_click() =~
+ "Edit User"
+
+ assert_patch(index_live, Routes.user_index_path(conn, :edit, user))
+
+ assert index_live
+ |> form("#user-form", user: @invalid_attrs)
+ |> render_change() =~ "can't be blank"
+
+ {:ok, _, html} =
+ index_live
+ |> form("#user-form", user: @update_attrs)
+ |> render_submit()
+ |> follow_redirect(conn, Routes.user_index_path(conn, :index))
+
+ assert html =~ "User updated successfully"
+ assert html =~ "some updated name"
+ end
+
+ test "deletes user in listing", %{conn: conn, user: user} do
+ {:ok, index_live, _html} = live(conn, Routes.user_index_path(conn, :index))
+
+ assert index_live |> element("#user-#{user.id} a", "Delete") |> render_click()
+ refute has_element?(index_live, "#user-#{user.id}")
+ end
+ end
+
+ describe "Show" do
+ setup [:create_user]
+
+ test "displays user", %{conn: conn, user: user} do
+ {:ok, _show_live, html} = live(conn, Routes.user_show_path(conn, :show, user))
+
+ assert html =~ "Show User"
+ assert html =~ user.name
+ end
+
+ test "updates user within modal", %{conn: conn, user: user} do
+ {:ok, show_live, _html} = live(conn, Routes.user_show_path(conn, :show, user))
+
+ assert show_live |> element("a", "Edit") |> render_click() =~
+ "Edit User"
+
+ assert_patch(show_live, Routes.user_show_path(conn, :edit, user))
+
+ assert show_live
+ |> form("#user-form", user: @invalid_attrs)
+ |> render_change() =~ "can't be blank"
+
+ {:ok, _, html} =
+ show_live
+ |> form("#user-form", user: @update_attrs)
+ |> render_submit()
+ |> follow_redirect(conn, Routes.user_show_path(conn, :show, user))
+
+ assert html =~ "User updated successfully"
+ assert html =~ "some updated name"
+ end
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/demo_web/views/error_view_test.exs b/examples/basic_phoenix_ecto/test/demo_web/views/error_view_test.exs
new file mode 100644
index 0000000..827537b
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo_web/views/error_view_test.exs
@@ -0,0 +1,14 @@
+defmodule DemoWeb.ErrorViewTest do
+ use DemoWeb.ConnCase, async: true
+
+ # Bring render/3 and render_to_string/3 for testing custom views
+ import Phoenix.View
+
+ test "renders 404.html" do
+ assert render_to_string(DemoWeb.ErrorView, "404.html", []) == "Not Found"
+ end
+
+ test "renders 500.html" do
+ assert render_to_string(DemoWeb.ErrorView, "500.html", []) == "Internal Server Error"
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/demo_web/views/layout_view_test.exs b/examples/basic_phoenix_ecto/test/demo_web/views/layout_view_test.exs
new file mode 100644
index 0000000..f5a8b73
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo_web/views/layout_view_test.exs
@@ -0,0 +1,8 @@
+defmodule DemoWeb.LayoutViewTest do
+ use DemoWeb.ConnCase, async: true
+
+ # When testing helpers, you may want to import Phoenix.HTML and
+ # use functions such as safe_to_string() to convert the helper
+ # result into an HTML string.
+ # import Phoenix.HTML
+end
diff --git a/examples/basic_phoenix_ecto/test/demo_web/views/page_view_test.exs b/examples/basic_phoenix_ecto/test/demo_web/views/page_view_test.exs
new file mode 100644
index 0000000..6ee178f
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/demo_web/views/page_view_test.exs
@@ -0,0 +1,3 @@
+defmodule DemoWeb.PageViewTest do
+ use DemoWeb.ConnCase, async: true
+end
diff --git a/examples/basic_phoenix_ecto/test/support/channel_case.ex b/examples/basic_phoenix_ecto/test/support/channel_case.ex
new file mode 100644
index 0000000..028647d
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/support/channel_case.ex
@@ -0,0 +1,36 @@
+defmodule DemoWeb.ChannelCase do
+ @moduledoc """
+ This module defines the test case to be used by
+ channel tests.
+
+ Such tests rely on `Phoenix.ChannelTest` and also
+ import other functionality to make it easier
+ to build common data structures and query the data layer.
+
+ Finally, if the test case interacts with the database,
+ we enable the SQL sandbox, so changes done to the database
+ are reverted at the end of every test. If you are using
+ PostgreSQL, you can even run database tests asynchronously
+ by setting `use DemoWeb.ChannelCase, async: true`, although
+ this option is not recommended for other databases.
+ """
+
+ use ExUnit.CaseTemplate
+
+ using do
+ quote do
+ # Import conveniences for testing with channels
+ import Phoenix.ChannelTest
+ import DemoWeb.ChannelCase
+
+ # The default endpoint for testing
+ @endpoint DemoWeb.Endpoint
+ end
+ end
+
+ setup tags do
+ pid = Ecto.Adapters.SQL.Sandbox.start_owner!(Demo.Repo, shared: not tags[:async])
+ on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end)
+ :ok
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/support/conn_case.ex b/examples/basic_phoenix_ecto/test/support/conn_case.ex
new file mode 100644
index 0000000..0756712
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/support/conn_case.ex
@@ -0,0 +1,39 @@
+defmodule DemoWeb.ConnCase do
+ @moduledoc """
+ This module defines the test case to be used by
+ tests that require setting up a connection.
+
+ Such tests rely on `Phoenix.ConnTest` and also
+ import other functionality to make it easier
+ to build common data structures and query the data layer.
+
+ Finally, if the test case interacts with the database,
+ we enable the SQL sandbox, so changes done to the database
+ are reverted at the end of every test. If you are using
+ PostgreSQL, you can even run database tests asynchronously
+ by setting `use DemoWeb.ConnCase, async: true`, although
+ this option is not recommended for other databases.
+ """
+
+ use ExUnit.CaseTemplate
+
+ using do
+ quote do
+ # Import conveniences for testing with connections
+ import Plug.Conn
+ import Phoenix.ConnTest
+ import DemoWeb.ConnCase
+
+ alias DemoWeb.Router.Helpers, as: Routes
+
+ # The default endpoint for testing
+ @endpoint DemoWeb.Endpoint
+ end
+ end
+
+ setup tags do
+ pid = Ecto.Adapters.SQL.Sandbox.start_owner!(Demo.Repo, shared: not tags[:async])
+ on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end)
+ {:ok, conn: Phoenix.ConnTest.build_conn()}
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/support/data_case.ex b/examples/basic_phoenix_ecto/test/support/data_case.ex
new file mode 100644
index 0000000..66a5f71
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/support/data_case.ex
@@ -0,0 +1,51 @@
+defmodule Demo.DataCase do
+ @moduledoc """
+ This module defines the setup for tests requiring
+ access to the application's data layer.
+
+ You may define functions here to be used as helpers in
+ your tests.
+
+ Finally, if the test case interacts with the database,
+ we enable the SQL sandbox, so changes done to the database
+ are reverted at the end of every test. If you are using
+ PostgreSQL, you can even run database tests asynchronously
+ by setting `use Demo.DataCase, async: true`, although
+ this option is not recommended for other databases.
+ """
+
+ use ExUnit.CaseTemplate
+
+ using do
+ quote do
+ alias Demo.Repo
+
+ import Ecto
+ import Ecto.Changeset
+ import Ecto.Query
+ import Demo.DataCase
+ end
+ end
+
+ setup tags do
+ pid = Ecto.Adapters.SQL.Sandbox.start_owner!(Demo.Repo, shared: not tags[:async])
+ on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end)
+ :ok
+ end
+
+ @doc """
+ A helper that transforms changeset errors into a map of messages.
+
+ assert {:error, changeset} = Accounts.create_user(%{password: "short"})
+ assert "password is too short" in errors_on(changeset).password
+ assert %{password: ["password is too short"]} = errors_on(changeset)
+
+ """
+ def errors_on(changeset) do
+ Ecto.Changeset.traverse_errors(changeset, fn {message, opts} ->
+ Regex.replace(~r"%{(\w+)}", message, fn _, key ->
+ opts |> Keyword.get(String.to_existing_atom(key), key) |> to_string()
+ end)
+ end)
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/support/fixtures/accounts_fixtures.ex b/examples/basic_phoenix_ecto/test/support/fixtures/accounts_fixtures.ex
new file mode 100644
index 0000000..248041b
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/support/fixtures/accounts_fixtures.ex
@@ -0,0 +1,20 @@
+defmodule Demo.AccountsFixtures do
+ @moduledoc """
+ This module defines test helpers for creating
+ entities via the `Demo.Accounts` context.
+ """
+
+ @doc """
+ Generate a user.
+ """
+ def user_fixture(attrs \\ %{}) do
+ {:ok, user} =
+ attrs
+ |> Enum.into(%{
+ name: "some name"
+ })
+ |> Demo.Accounts.create_user()
+
+ user
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/support/fixtures/blog_fixtures.ex b/examples/basic_phoenix_ecto/test/support/fixtures/blog_fixtures.ex
new file mode 100644
index 0000000..9b551ca
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/support/fixtures/blog_fixtures.ex
@@ -0,0 +1,21 @@
+defmodule Demo.BlogFixtures do
+ @moduledoc """
+ This module defines test helpers for creating
+ entities via the `Demo.Blog` context.
+ """
+
+ @doc """
+ Generate a post.
+ """
+ def post_fixture(attrs \\ %{}) do
+ {:ok, post} =
+ attrs
+ |> Enum.into(%{
+ body: "some body",
+ title: "some title"
+ })
+ |> Demo.Blog.create_post()
+
+ post
+ end
+end
diff --git a/examples/basic_phoenix_ecto/test/test_helper.exs b/examples/basic_phoenix_ecto/test/test_helper.exs
new file mode 100644
index 0000000..c53684b
--- /dev/null
+++ b/examples/basic_phoenix_ecto/test/test_helper.exs
@@ -0,0 +1,2 @@
+ExUnit.start()
+Ecto.Adapters.SQL.Sandbox.mode(Demo.Repo, :manual)