-![](/github/hero.png)
+![](https://raw.githubusercontent.com/lalabuy948/PhoenixAnalytics/master/github/hero.png)
Phoenix Analytics is embedded plug and play tool designed for Phoenix applications. It provides a simple and efficient way to track and analyze user behavior and application performance without impacting your main application's performance and database.
@@ -30,7 +30,7 @@ by adding `phoenix_analytics` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
- {:phoenix_analytics, "~> 0.1.3"}
+ {:phoenix_analytics, "~> 0.2"}
]
end
```
@@ -39,10 +39,31 @@ Update `config/config.exs`
```exs
config :phoenix_analytics,
- database_path: System.get_env("DUCK_PATH") || "analytics.duckdb",
+ duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb",
app_domain: System.get_env("PHX_HOST") || "example.com"
```
+> [!IMPORTANT]
+> In case you have dynamic cluster, you can use your PostgresDB as backend.
+
+```exs
+config :phoenix_analytics,
+ duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb",
+ app_domain: System.get_env("PHX_HOST") || "example.com",
+ postgres_conn: System.get_env("POSTGRES_CONN") || "dbname=postgres user=phoenix password=analytics host=localhost"
+```
+
+> [!IMPORTANT]
+> In case you would like to proceed with Postgres option, consider enabling caching.
+
+```exs
+config :phoenix_analytics,
+ duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb",
+ app_domain: System.get_env("PHX_HOST") || "example.com",
+ postgres_conn: System.get_env("POSTGRES_CONN") || "dbname=postgres user=phoenix password=analytics host=localhost",
+ cache_ttl: System.get_env("CACHE_TTL") || 120 # seconds
+```
+
Add migration file
> In case you have ecto less / no migrations project you can do the following:
@@ -53,8 +74,15 @@ Add migration file
mix ecto.gen.migration add_phoenix_analytics
```
+> [!TIP]
+> Based on your configuration migration will be run in appropriate database.
+> If only `duckdb_path` then in duckdb file.
+> If `duckdb_path` and `postgres_conn` provided then in your Postgres database.
+
```elixir
defmodule MyApp.Repo.Migrations.AddPhoenixAnalytics do
+ use Ecto.Migration
+
def up, do: PhoenixAnalytics.Migration.up()
def down, do: PhoenixAnalytics.Migration.down()
end
@@ -85,6 +113,7 @@ Update your `.gitignore`
*.duckdb.*
```
+> [!WARNING]
> ‼️ Please test thoroughly before proceeding to production!
## Documentation
@@ -119,19 +148,31 @@ mix setup
Then you would need some database with seeds. Here is command for this:
```sh
-DUCK_PATH="dev.duckdb" mix run priv/repo/seeds.exs
+DUCKDB_PATH="analytics.duckdb" mix run priv/repo/seeds.exs
```
-Lastly you can start dev server:
+or if you would like to test with Postgres backend:
```sh
-DUCK_PATH="dev.duckdb" elixir priv/repo/dev.exs
+cd examples/duck_postgres/
+
+docker compose -f postgres-compose.yml up
+
+# from project root
+mix run priv/repo/seeds_postgres.exs
```
-or
+> [!NOTE]
+> Move database with seeds to example project which you going to use.
+
+Lastly you can use one of example applications to start server.
```sh
-DUCK_PATH="dev.duckdb" iex priv/repo/dev.exs
+cd examples/duck_only/
+
+mix deps.get
+
+mix phx.server
```
You can navigate to `http://localhost:4000/dev/analytics`
@@ -147,14 +188,11 @@ Script can be found here: `vegeta/vegeta.sh`
## For whom this library
-- [x] Single instance Phoenix app
-- [x] Multiple instances of Phoenix app without auto scaling group
-
-- [ ] Multiple instances of Phoenix app **with** auto scaling group
-
-There is a plan to build a separate backend to be powered by ClickHouse in order to track requests across multiple nodes in orchestrated scenarios.
+- [x] Single instance Phoenix app (duckdb only recommended)
+- [x] Multiple instances of Phoenix app **without** auto scaling group (duckdb or postgres option can be used)
+- [x] Multiple instances of Phoenix app **with** auto scaling group (only postgres powered apps supported at the moment)
### Heavily inspired by
-- [https://github.com/elixir-error-tracker/error-tracker](https://github.com/elixir-error-tracker/error-tracker)
-- [https://plausible.io](https://plausible.io)
+- [error-tracker](https://github.com/elixir-error-tracker/error-tracker)
+- [plausible.io](https://plausible.io)
diff --git a/config/config.exs b/config/config.exs
index 0e87512..69213c7 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -1,7 +1,10 @@
import Config
config :phoenix_analytics,
- database_path: System.get_env("DUCK_PATH") || "analytics.duckdb",
+ duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb",
app_domain: System.get_env("PHX_HOST") || "example.com"
+# postgres_conn: "dbname=postgres user=phoenix password=analytics host=localhost"
+# cache_ttl: System.get_env("CACHE_TTL") || 120 # seconds
+
import_config "#{config_env()}.exs"
diff --git a/config/dev.exs b/config/dev.exs
index 13378fb..dbf0f53 100644
--- a/config/dev.exs
+++ b/config/dev.exs
@@ -1,5 +1,7 @@
import Config
+config :phoenix_analytics, duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb"
+
config :esbuild, :version, "0.17.11"
config :tailwind, :version, "3.2.7"
diff --git a/config/test.exs b/config/test.exs
index ab725a2..4b17712 100644
--- a/config/test.exs
+++ b/config/test.exs
@@ -1,3 +1,3 @@
import Config
-config :phoenix_analytics, database_path: "test.duckdb"
+config :phoenix_analytics, duckdb_path: "test.duckdb"
diff --git a/docker/minio-compose.yml b/docker/minio-compose.yml
new file mode 100644
index 0000000..c06fa84
--- /dev/null
+++ b/docker/minio-compose.yml
@@ -0,0 +1,15 @@
+services:
+ minio:
+ image: minio/minio
+ ports:
+ - "9000:9000"
+ - "9001:9001"
+ volumes:
+ - minio_storage:/data
+ environment:
+ MINIO_ROOT_USER: phoenix
+ MINIO_ROOT_PASSWORD: analytics
+ command: server --console-address ":9001" /data
+
+volumes:
+ minio_storage: {}
diff --git a/docker/postgres-compose.yml b/docker/postgres-compose.yml
new file mode 100644
index 0000000..b9d34bd
--- /dev/null
+++ b/docker/postgres-compose.yml
@@ -0,0 +1,11 @@
+services:
+ database:
+ image: "postgres:14.13-alpine"
+
+ ports:
+ - 5432:5432
+
+ environment:
+ POSTGRES_USER: phoenix
+ POSTGRES_PASSWORD: analytics
+ POSTGRES_DB: postgres
diff --git a/examples/duck_only/.formatter.exs b/examples/duck_only/.formatter.exs
new file mode 100644
index 0000000..e945e12
--- /dev/null
+++ b/examples/duck_only/.formatter.exs
@@ -0,0 +1,5 @@
+[
+ import_deps: [:phoenix],
+ plugins: [Phoenix.LiveView.HTMLFormatter],
+ inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}"]
+]
diff --git a/examples/duck_only/.gitignore b/examples/duck_only/.gitignore
new file mode 100644
index 0000000..2058ba3
--- /dev/null
+++ b/examples/duck_only/.gitignore
@@ -0,0 +1,39 @@
+# The directory Mix will write compiled artifacts to.
+/_build/
+
+# If you run "mix test --cover", coverage assets end up here.
+/cover/
+
+# The directory Mix downloads your dependencies sources to.
+/deps/
+
+# Where 3rd-party dependencies like ExDoc output generated docs.
+/doc/
+
+# Ignore .fetch files in case you like to edit your project deps locally.
+/.fetch
+
+# If the VM crashes, it generates a dump, let's ignore it too.
+erl_crash.dump
+
+# Also ignore archive artifacts (built via "mix archive.build").
+*.ez
+
+# Temporary files, for example, from tests.
+/tmp/
+
+# Ignore package tarball (built via "mix hex.build").
+duck_only-*.tar
+
+# Ignore assets that are produced by build tools.
+/priv/static/assets/
+
+# Ignore digested assets cache.
+/priv/static/cache_manifest.json
+
+# In case you use Node.js/npm, you want to ignore these.
+npm-debug.log
+/assets/node_modules/
+
+*.duckdb
+*.duckdb.*
diff --git a/examples/duck_only/README.md b/examples/duck_only/README.md
new file mode 100644
index 0000000..e6e4b60
--- /dev/null
+++ b/examples/duck_only/README.md
@@ -0,0 +1,57 @@
+# Duck_Only
+
+## Installation
+
+If [available in Hex](https://hex.pm/packages/phoenix_analytics), the package can be installed
+by adding `phoenix_analytics` to your list of dependencies in `mix.exs`:
+
+```elixir
+def deps do
+ [
+ {:phoenix_analytics, "~> 0.1.2"}
+ ]
+end
+```
+
+Update `config/config.exs`
+
+```exs
+config :phoenix_analytics,
+ duckdb_path: System.get_env("DUCKDB_PATH") || "analytics.duckdb",
+ app_domain: System.get_env("PHX_HOST") || "example.com"
+```
+
+Add plug to enable tracking to `endpoint.ex`, ‼️ add it straight after your `Plug.Static`
+
+```elixir
+plug PhoenixAnalytics.Plugs.RequestTracker
+```
+
+Add dashboard route to your `router.ex`
+
+```elixir
+use PhoenixAnalytics.Web, :router
+
+phoenix_analytics_dashboard "/analytics"
+```
+
+Update your `.gitignore`
+
+```.gitignore
+*.duckdb
+*.duckdb.*
+```
+
+## Start Server
+
+Install dependancies
+
+```sh
+mix deps.get
+```
+
+Run server
+
+```sh
+mix phx.server
+```
diff --git a/examples/duck_only/assets/css/app.css b/examples/duck_only/assets/css/app.css
new file mode 100644
index 0000000..378c8f9
--- /dev/null
+++ b/examples/duck_only/assets/css/app.css
@@ -0,0 +1,5 @@
+@import "tailwindcss/base";
+@import "tailwindcss/components";
+@import "tailwindcss/utilities";
+
+/* This file is for your main application CSS */
diff --git a/examples/duck_only/assets/js/app.js b/examples/duck_only/assets/js/app.js
new file mode 100644
index 0000000..d5e278a
--- /dev/null
+++ b/examples/duck_only/assets/js/app.js
@@ -0,0 +1,44 @@
+// If you want to use Phoenix channels, run `mix help phx.gen.channel`
+// to get started and then uncomment the line below.
+// import "./user_socket.js"
+
+// You can include dependencies in two ways.
+//
+// The simplest option is to put them in assets/vendor and
+// import them using relative paths:
+//
+// import "../vendor/some-package.js"
+//
+// Alternatively, you can `npm install some-package --prefix assets` and import
+// them using a path starting with the package name:
+//
+// import "some-package"
+//
+
+// Include phoenix_html to handle method=PUT/DELETE in forms and buttons.
+import "phoenix_html"
+// Establish Phoenix Socket and LiveView configuration.
+import {Socket} from "phoenix"
+import {LiveSocket} from "phoenix_live_view"
+import topbar from "../vendor/topbar"
+
+let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content")
+let liveSocket = new LiveSocket("/live", Socket, {
+ longPollFallbackMs: 2500,
+ params: {_csrf_token: csrfToken}
+})
+
+// Show progress bar on live navigation and form submits
+topbar.config({barColors: {0: "#29d"}, shadowColor: "rgba(0, 0, 0, .3)"})
+window.addEventListener("phx:page-loading-start", _info => topbar.show(300))
+window.addEventListener("phx:page-loading-stop", _info => topbar.hide())
+
+// connect if there are any LiveViews on the page
+liveSocket.connect()
+
+// expose liveSocket on window for web console debug logs and latency simulation:
+// >> liveSocket.enableDebug()
+// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session
+// >> liveSocket.disableLatencySim()
+window.liveSocket = liveSocket
+
diff --git a/examples/duck_only/assets/tailwind.config.js b/examples/duck_only/assets/tailwind.config.js
new file mode 100644
index 0000000..8d473df
--- /dev/null
+++ b/examples/duck_only/assets/tailwind.config.js
@@ -0,0 +1,74 @@
+// See the Tailwind configuration guide for advanced usage
+// https://tailwindcss.com/docs/configuration
+
+const plugin = require("tailwindcss/plugin")
+const fs = require("fs")
+const path = require("path")
+
+module.exports = {
+ content: [
+ "./js/**/*.js",
+ "../lib/duck_only_web.ex",
+ "../lib/duck_only_web/**/*.*ex"
+ ],
+ theme: {
+ extend: {
+ colors: {
+ brand: "#FD4F00",
+ }
+ },
+ },
+ plugins: [
+ require("@tailwindcss/forms"),
+ // Allows prefixing tailwind classes with LiveView classes to add rules
+ // only when LiveView classes are applied, for example:
+ //
+ //
+ //
+ plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])),
+ plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])),
+ plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])),
+
+ // Embeds Heroicons (https://heroicons.com) into your app.css bundle
+ // See your `CoreComponents.icon/1` for more information.
+ //
+ plugin(function({matchComponents, theme}) {
+ let iconsDir = path.join(__dirname, "../deps/heroicons/optimized")
+ let values = {}
+ let icons = [
+ ["", "/24/outline"],
+ ["-solid", "/24/solid"],
+ ["-mini", "/20/solid"],
+ ["-micro", "/16/solid"]
+ ]
+ icons.forEach(([suffix, dir]) => {
+ fs.readdirSync(path.join(iconsDir, dir)).forEach(file => {
+ let name = path.basename(file, ".svg") + suffix
+ values[name] = {name, fullPath: path.join(iconsDir, dir, file)}
+ })
+ })
+ matchComponents({
+ "hero": ({name, fullPath}) => {
+ let content = fs.readFileSync(fullPath).toString().replace(/\r?\n|\r/g, "")
+ let size = theme("spacing.6")
+ if (name.endsWith("-mini")) {
+ size = theme("spacing.5")
+ } else if (name.endsWith("-micro")) {
+ size = theme("spacing.4")
+ }
+ return {
+ [`--hero-${name}`]: `url('data:image/svg+xml;utf8,${content}')`,
+ "-webkit-mask": `var(--hero-${name})`,
+ "mask": `var(--hero-${name})`,
+ "mask-repeat": "no-repeat",
+ "background-color": "currentColor",
+ "vertical-align": "middle",
+ "display": "inline-block",
+ "width": size,
+ "height": size
+ }
+ }
+ }, {values})
+ })
+ ]
+}
diff --git a/examples/duck_only/assets/vendor/topbar.js b/examples/duck_only/assets/vendor/topbar.js
new file mode 100644
index 0000000..4195727
--- /dev/null
+++ b/examples/duck_only/assets/vendor/topbar.js
@@ -0,0 +1,165 @@
+/**
+ * @license MIT
+ * topbar 2.0.0, 2023-02-04
+ * https://buunguyen.github.io/topbar
+ * Copyright (c) 2021 Buu Nguyen
+ */
+(function (window, document) {
+ "use strict";
+
+ // https://gist.github.com/paulirish/1579671
+ (function () {
+ var lastTime = 0;
+ var vendors = ["ms", "moz", "webkit", "o"];
+ for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
+ window.requestAnimationFrame =
+ window[vendors[x] + "RequestAnimationFrame"];
+ window.cancelAnimationFrame =
+ window[vendors[x] + "CancelAnimationFrame"] ||
+ window[vendors[x] + "CancelRequestAnimationFrame"];
+ }
+ if (!window.requestAnimationFrame)
+ window.requestAnimationFrame = function (callback, element) {
+ var currTime = new Date().getTime();
+ var timeToCall = Math.max(0, 16 - (currTime - lastTime));
+ var id = window.setTimeout(function () {
+ callback(currTime + timeToCall);
+ }, timeToCall);
+ lastTime = currTime + timeToCall;
+ return id;
+ };
+ if (!window.cancelAnimationFrame)
+ window.cancelAnimationFrame = function (id) {
+ clearTimeout(id);
+ };
+ })();
+
+ var canvas,
+ currentProgress,
+ showing,
+ progressTimerId = null,
+ fadeTimerId = null,
+ delayTimerId = null,
+ addEvent = function (elem, type, handler) {
+ if (elem.addEventListener) elem.addEventListener(type, handler, false);
+ else if (elem.attachEvent) elem.attachEvent("on" + type, handler);
+ else elem["on" + type] = handler;
+ },
+ options = {
+ autoRun: true,
+ barThickness: 3,
+ barColors: {
+ 0: "rgba(26, 188, 156, .9)",
+ ".25": "rgba(52, 152, 219, .9)",
+ ".50": "rgba(241, 196, 15, .9)",
+ ".75": "rgba(230, 126, 34, .9)",
+ "1.0": "rgba(211, 84, 0, .9)",
+ },
+ shadowBlur: 10,
+ shadowColor: "rgba(0, 0, 0, .6)",
+ className: null,
+ },
+ repaint = function () {
+ canvas.width = window.innerWidth;
+ canvas.height = options.barThickness * 5; // need space for shadow
+
+ var ctx = canvas.getContext("2d");
+ ctx.shadowBlur = options.shadowBlur;
+ ctx.shadowColor = options.shadowColor;
+
+ var lineGradient = ctx.createLinearGradient(0, 0, canvas.width, 0);
+ for (var stop in options.barColors)
+ lineGradient.addColorStop(stop, options.barColors[stop]);
+ ctx.lineWidth = options.barThickness;
+ ctx.beginPath();
+ ctx.moveTo(0, options.barThickness / 2);
+ ctx.lineTo(
+ Math.ceil(currentProgress * canvas.width),
+ options.barThickness / 2
+ );
+ ctx.strokeStyle = lineGradient;
+ ctx.stroke();
+ },
+ createCanvas = function () {
+ canvas = document.createElement("canvas");
+ var style = canvas.style;
+ style.position = "fixed";
+ style.top = style.left = style.right = style.margin = style.padding = 0;
+ style.zIndex = 100001;
+ style.display = "none";
+ if (options.className) canvas.classList.add(options.className);
+ document.body.appendChild(canvas);
+ addEvent(window, "resize", repaint);
+ },
+ topbar = {
+ config: function (opts) {
+ for (var key in opts)
+ if (options.hasOwnProperty(key)) options[key] = opts[key];
+ },
+ show: function (delay) {
+ if (showing) return;
+ if (delay) {
+ if (delayTimerId) return;
+ delayTimerId = setTimeout(() => topbar.show(), delay);
+ } else {
+ showing = true;
+ if (fadeTimerId !== null) window.cancelAnimationFrame(fadeTimerId);
+ if (!canvas) createCanvas();
+ canvas.style.opacity = 1;
+ canvas.style.display = "block";
+ topbar.progress(0);
+ if (options.autoRun) {
+ (function loop() {
+ progressTimerId = window.requestAnimationFrame(loop);
+ topbar.progress(
+ "+" + 0.05 * Math.pow(1 - Math.sqrt(currentProgress), 2)
+ );
+ })();
+ }
+ }
+ },
+ progress: function (to) {
+ if (typeof to === "undefined") return currentProgress;
+ if (typeof to === "string") {
+ to =
+ (to.indexOf("+") >= 0 || to.indexOf("-") >= 0
+ ? currentProgress
+ : 0) + parseFloat(to);
+ }
+ currentProgress = to > 1 ? 1 : to;
+ repaint();
+ return currentProgress;
+ },
+ hide: function () {
+ clearTimeout(delayTimerId);
+ delayTimerId = null;
+ if (!showing) return;
+ showing = false;
+ if (progressTimerId != null) {
+ window.cancelAnimationFrame(progressTimerId);
+ progressTimerId = null;
+ }
+ (function loop() {
+ if (topbar.progress("+.1") >= 1) {
+ canvas.style.opacity -= 0.05;
+ if (canvas.style.opacity <= 0.05) {
+ canvas.style.display = "none";
+ fadeTimerId = null;
+ return;
+ }
+ }
+ fadeTimerId = window.requestAnimationFrame(loop);
+ })();
+ },
+ };
+
+ if (typeof module === "object" && typeof module.exports === "object") {
+ module.exports = topbar;
+ } else if (typeof define === "function" && define.amd) {
+ define(function () {
+ return topbar;
+ });
+ } else {
+ this.topbar = topbar;
+ }
+}.call(this, window, document));
diff --git a/examples/duck_only/config/config.exs b/examples/duck_only/config/config.exs
new file mode 100644
index 0000000..3a74d41
--- /dev/null
+++ b/examples/duck_only/config/config.exs
@@ -0,0 +1,69 @@
+# This file is responsible for configuring your application
+# and its dependencies with the aid of the Config module.
+#
+# This configuration file is loaded before any dependency and
+# is restricted to this project.
+
+# General application configuration
+import Config
+
+config :phoenix_analytics,
+ app_domain: "example.com",
+ duckdb_path: "analytics.duckdb"
+
+config :duck_only,
+ generators: [timestamp_type: :utc_datetime]
+
+# Configures the endpoint
+config :duck_only, DuckOnlyWeb.Endpoint,
+ url: [host: "localhost"],
+ adapter: Bandit.PhoenixAdapter,
+ render_errors: [
+ formats: [html: DuckOnlyWeb.ErrorHTML, json: DuckOnlyWeb.ErrorJSON],
+ layout: false
+ ],
+ pubsub_server: DuckOnly.PubSub,
+ live_view: [signing_salt: "lH2GjLc0"]
+
+# Configures the mailer
+#
+# By default it uses the "Local" adapter which stores the emails
+# locally. You can see the emails in your browser, at "/dev/mailbox".
+#
+# For production it's recommended to configure a different adapter
+# at the `config/runtime.exs`.
+config :duck_only, DuckOnly.Mailer, adapter: Swoosh.Adapters.Local
+
+# Configure esbuild (the version is required)
+config :esbuild,
+ version: "0.17.11",
+ duck_only: [
+ args:
+ ~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
+ cd: Path.expand("../assets", __DIR__),
+ env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
+ ]
+
+# Configure tailwind (the version is required)
+config :tailwind,
+ version: "3.4.3",
+ duck_only: [
+ args: ~w(
+ --config=tailwind.config.js
+ --input=css/app.css
+ --output=../priv/static/assets/app.css
+ ),
+ cd: Path.expand("../assets", __DIR__)
+ ]
+
+# Configures Elixir's Logger
+config :logger, :console,
+ format: "$time $metadata[$level] $message\n",
+ metadata: [:request_id]
+
+# Use Jason for JSON parsing in Phoenix
+config :phoenix, :json_library, Jason
+
+# Import environment specific config. This must remain at the bottom
+# of this file so it overrides the configuration defined above.
+import_config "#{config_env()}.exs"
diff --git a/examples/duck_only/config/dev.exs b/examples/duck_only/config/dev.exs
new file mode 100644
index 0000000..61b4f81
--- /dev/null
+++ b/examples/duck_only/config/dev.exs
@@ -0,0 +1,75 @@
+import Config
+
+# For development, we disable any cache and enable
+# debugging and code reloading.
+#
+# The watchers configuration can be used to run external
+# watchers to your application. For example, we can use it
+# to bundle .js and .css sources.
+config :duck_only, DuckOnlyWeb.Endpoint,
+ # Binding to loopback ipv4 address prevents access from other machines.
+ # Change to `ip: {0, 0, 0, 0}` to allow access from other machines.
+ http: [ip: {127, 0, 0, 1}, port: 4000],
+ check_origin: false,
+ code_reloader: true,
+ debug_errors: true,
+ secret_key_base: "5YifUfLRlCWg8CYgxzUo8wm81zJZyEKeqb9YuOHcx/uy5qcS7hgnVvrjfz9ztUtl",
+ watchers: [
+ esbuild: {Esbuild, :install_and_run, [:duck_only, ~w(--sourcemap=inline --watch)]},
+ tailwind: {Tailwind, :install_and_run, [:duck_only, ~w(--watch)]}
+ ]
+
+# ## SSL Support
+#
+# In order to use HTTPS in development, a self-signed
+# certificate can be generated by running the following
+# Mix task:
+#
+# mix phx.gen.cert
+#
+# Run `mix help phx.gen.cert` for more information.
+#
+# The `http:` config above can be replaced with:
+#
+# https: [
+# port: 4001,
+# cipher_suite: :strong,
+# keyfile: "priv/cert/selfsigned_key.pem",
+# certfile: "priv/cert/selfsigned.pem"
+# ],
+#
+# If desired, both `http:` and `https:` keys can be
+# configured to run both http and https servers on
+# different ports.
+
+# Watch static and templates for browser reloading.
+config :duck_only, DuckOnlyWeb.Endpoint,
+ live_reload: [
+ patterns: [
+ ~r"priv/static/(?!uploads/).*(js|css|png|jpeg|jpg|gif|svg)$",
+ ~r"priv/gettext/.*(po)$",
+ ~r"lib/duck_only_web/(controllers|live|components)/.*(ex|heex)$"
+ ]
+ ]
+
+# Enable dev routes for dashboard and mailbox
+config :duck_only, dev_routes: true
+
+# Do not include metadata nor timestamps in development logs
+config :logger, :console, format: "[$level] $message\n"
+
+# Set a higher stacktrace during development. Avoid configuring such
+# in production as building large stacktraces may be expensive.
+config :phoenix, :stacktrace_depth, 20
+
+# Initialize plugs at runtime for faster development compilation
+config :phoenix, :plug_init_mode, :runtime
+
+config :phoenix_live_view,
+ # Include HEEx debug annotations as HTML comments in rendered markup
+ debug_heex_annotations: true,
+ # Enable helpful, but potentially expensive runtime checks
+ enable_expensive_runtime_checks: true
+
+# Disable swoosh api client as it is only required for production adapters.
+config :swoosh, :api_client, false
diff --git a/examples/duck_only/config/prod.exs b/examples/duck_only/config/prod.exs
new file mode 100644
index 0000000..e826989
--- /dev/null
+++ b/examples/duck_only/config/prod.exs
@@ -0,0 +1,20 @@
+import Config
+
+# Note we also include the path to a cache manifest
+# containing the digested version of static files. This
+# manifest is generated by the `mix assets.deploy` task,
+# which you should run after static files are built and
+# before starting your production server.
+config :duck_only, DuckOnlyWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
+
+# Configures Swoosh API Client
+config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: DuckOnly.Finch
+
+# Disable Swoosh Local Memory Storage
+config :swoosh, local: false
+
+# Do not print debug messages in production
+config :logger, level: :info
+
+# Runtime production configuration, including reading
+# of environment variables, is done on config/runtime.exs.
diff --git a/examples/duck_only/config/runtime.exs b/examples/duck_only/config/runtime.exs
new file mode 100644
index 0000000..eb3c3ce
--- /dev/null
+++ b/examples/duck_only/config/runtime.exs
@@ -0,0 +1,102 @@
+import Config
+
+# config/runtime.exs is executed for all environments, including
+# during releases. It is executed after compilation and before the
+# system starts, so it is typically used to load production configuration
+# and secrets from environment variables or elsewhere. Do not define
+# any compile-time configuration in here, as it won't be applied.
+# The block below contains prod specific runtime configuration.
+
+# ## Using releases
+#
+# If you use `mix release`, you need to explicitly enable the server
+# by passing the PHX_SERVER=true when you start it:
+#
+# PHX_SERVER=true bin/duck_only start
+#
+# Alternatively, you can use `mix phx.gen.release` to generate a `bin/server`
+# script that automatically sets the env var above.
+if System.get_env("PHX_SERVER") do
+ config :duck_only, DuckOnlyWeb.Endpoint, server: true
+end
+
+if config_env() == :prod do
+ # The secret key base is used to sign/encrypt cookies and other secrets.
+ # A default value is used in config/dev.exs and config/test.exs but you
+ # want to use a different value for prod and you most likely don't want
+ # to check this value into version control, so we use an environment
+ # variable instead.
+ secret_key_base =
+ System.get_env("SECRET_KEY_BASE") ||
+ raise """
+ environment variable SECRET_KEY_BASE is missing.
+ You can generate one by calling: mix phx.gen.secret
+ """
+
+ host = System.get_env("PHX_HOST") || "example.com"
+ port = String.to_integer(System.get_env("PORT") || "4000")
+
+ config :duck_only, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY")
+
+ config :duck_only, DuckOnlyWeb.Endpoint,
+ url: [host: host, port: 443, scheme: "https"],
+ http: [
+ # Enable IPv6 and bind on all interfaces.
+ # Set it to {0, 0, 0, 0, 0, 0, 0, 1} for local network only access.
+ # See the documentation on https://hexdocs.pm/bandit/Bandit.html#t:options/0
+ # for details about using IPv6 vs IPv4 and loopback vs public addresses.
+ ip: {0, 0, 0, 0, 0, 0, 0, 0},
+ port: port
+ ],
+ secret_key_base: secret_key_base
+
+ # ## SSL Support
+ #
+ # To get SSL working, you will need to add the `https` key
+ # to your endpoint configuration:
+ #
+ # config :duck_only, DuckOnlyWeb.Endpoint,
+ # https: [
+ # ...,
+ # port: 443,
+ # cipher_suite: :strong,
+ # keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"),
+ # certfile: System.get_env("SOME_APP_SSL_CERT_PATH")
+ # ]
+ #
+ # The `cipher_suite` is set to `:strong` to support only the
+ # latest and more secure SSL ciphers. This means old browsers
+ # and clients may not be supported. You can set it to
+ # `:compatible` for wider support.
+ #
+ # `:keyfile` and `:certfile` expect an absolute path to the key
+ # and cert in disk or a relative path inside priv, for example
+ # "priv/ssl/server.key". For all supported SSL configuration
+ # options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1
+ #
+ # We also recommend setting `force_ssl` in your config/prod.exs,
+ # ensuring no data is ever sent via http, always redirecting to https:
+ #
+ # config :duck_only, DuckOnlyWeb.Endpoint,
+ # force_ssl: [hsts: true]
+ #
+ # Check `Plug.SSL` for all available options in `force_ssl`.
+
+ # ## Configuring the mailer
+ #
+ # In production you need to configure the mailer to use a different adapter.
+ # Also, you may need to configure the Swoosh API client of your choice if you
+ # are not using SMTP. Here is an example of the configuration:
+ #
+ # config :duck_only, DuckOnly.Mailer,
+ # adapter: Swoosh.Adapters.Mailgun,
+ # api_key: System.get_env("MAILGUN_API_KEY"),
+ # domain: System.get_env("MAILGUN_DOMAIN")
+ #
+ # For this example you need include a HTTP client required by Swoosh API client.
+ # Swoosh supports Hackney and Finch out of the box:
+ #
+ # config :swoosh, :api_client, Swoosh.ApiClient.Hackney
+ #
+ # See https://hexdocs.pm/swoosh/Swoosh.html#module-installation for details.
+end
diff --git a/examples/duck_only/config/test.exs b/examples/duck_only/config/test.exs
new file mode 100644
index 0000000..06ea591
--- /dev/null
+++ b/examples/duck_only/config/test.exs
@@ -0,0 +1,24 @@
+import Config
+
+# We don't run a server during test. If one is required,
+# you can enable the server option below.
+config :duck_only, DuckOnlyWeb.Endpoint,
+ http: [ip: {127, 0, 0, 1}, port: 4002],
+ secret_key_base: "ywZ5BVvGmlhW1jF5pGP7rBe4swuSuLKsfqNxNJp1RfwswYMlS0tMTm+IQVkjT2aW",
+ server: false
+
+# In test we don't send emails
+config :duck_only, DuckOnly.Mailer, adapter: Swoosh.Adapters.Test
+
+# Disable swoosh api client as it is only required for production adapters
+config :swoosh, :api_client, false
+
+# Print only warnings and errors during test
+config :logger, level: :warning
+
+# Initialize plugs at runtime for faster test compilation
+config :phoenix, :plug_init_mode, :runtime
+
+# Enable helpful, but potentially expensive runtime checks
+config :phoenix_live_view,
+ enable_expensive_runtime_checks: true
diff --git a/examples/duck_only/lib/duck_only.ex b/examples/duck_only/lib/duck_only.ex
new file mode 100644
index 0000000..b1d8da2
--- /dev/null
+++ b/examples/duck_only/lib/duck_only.ex
@@ -0,0 +1,9 @@
+defmodule DuckOnly do
+ @moduledoc """
+ DuckOnly keeps the contexts that define your domain
+ and business logic.
+
+ Contexts are also responsible for managing your data, regardless
+ if it comes from the database, an external API or others.
+ """
+end
diff --git a/examples/duck_only/lib/duck_only/application.ex b/examples/duck_only/lib/duck_only/application.ex
new file mode 100644
index 0000000..789e550
--- /dev/null
+++ b/examples/duck_only/lib/duck_only/application.ex
@@ -0,0 +1,35 @@
+defmodule DuckOnly.Application do
+ # See https://hexdocs.pm/elixir/Application.html
+ # for more information on OTP Applications
+ @moduledoc false
+
+ use Application
+
+ @impl true
+ def start(_type, _args) do
+ children = [
+ DuckOnlyWeb.Telemetry,
+ {DNSCluster, query: Application.get_env(:duck_only, :dns_cluster_query) || :ignore},
+ {Phoenix.PubSub, name: DuckOnly.PubSub},
+ # Start the Finch HTTP client for sending emails
+ {Finch, name: DuckOnly.Finch},
+ # Start a worker by calling: DuckOnly.Worker.start_link(arg)
+ # {DuckOnly.Worker, arg},
+ # Start to serve requests, typically the last entry
+ DuckOnlyWeb.Endpoint
+ ]
+
+ # See https://hexdocs.pm/elixir/Supervisor.html
+ # for other strategies and supported options
+ opts = [strategy: :one_for_one, name: DuckOnly.Supervisor]
+ Supervisor.start_link(children, opts)
+ end
+
+ # Tell Phoenix to update the endpoint configuration
+ # whenever the application is updated.
+ @impl true
+ def config_change(changed, _new, removed) do
+ DuckOnlyWeb.Endpoint.config_change(changed, removed)
+ :ok
+ end
+end
diff --git a/examples/duck_only/lib/duck_only/mailer.ex b/examples/duck_only/lib/duck_only/mailer.ex
new file mode 100644
index 0000000..2d919bd
--- /dev/null
+++ b/examples/duck_only/lib/duck_only/mailer.ex
@@ -0,0 +1,3 @@
+defmodule DuckOnly.Mailer do
+ use Swoosh.Mailer, otp_app: :duck_only
+end
diff --git a/examples/duck_only/lib/duck_only_web.ex b/examples/duck_only/lib/duck_only_web.ex
new file mode 100644
index 0000000..7636462
--- /dev/null
+++ b/examples/duck_only/lib/duck_only_web.ex
@@ -0,0 +1,113 @@
+defmodule DuckOnlyWeb do
+ @moduledoc """
+ The entrypoint for defining your web interface, such
+ as controllers, components, channels, and so on.
+
+ This can be used in your application as:
+
+ use DuckOnlyWeb, :controller
+ use DuckOnlyWeb, :html
+
+ The definitions below will be executed for every controller,
+ component, etc, so keep them short and clean, focused
+ on imports, uses and aliases.
+
+ Do NOT define functions inside the quoted expressions
+ below. Instead, define additional modules and import
+ those modules here.
+ """
+
+ def static_paths, do: ~w(assets fonts images favicon.ico robots.txt)
+
+ def router do
+ quote do
+ use Phoenix.Router, helpers: false
+
+ # Import common connection and controller functions to use in pipelines
+ import Plug.Conn
+ import Phoenix.Controller
+ import Phoenix.LiveView.Router
+ end
+ end
+
+ def channel do
+ quote do
+ use Phoenix.Channel
+ end
+ end
+
+ def controller do
+ quote do
+ use Phoenix.Controller,
+ formats: [:html, :json],
+ layouts: [html: DuckOnlyWeb.Layouts]
+
+ import Plug.Conn
+ import DuckOnlyWeb.Gettext
+
+ unquote(verified_routes())
+ end
+ end
+
+ def live_view do
+ quote do
+ use Phoenix.LiveView,
+ layout: {DuckOnlyWeb.Layouts, :app}
+
+ unquote(html_helpers())
+ end
+ end
+
+ def live_component do
+ quote do
+ use Phoenix.LiveComponent
+
+ unquote(html_helpers())
+ end
+ end
+
+ def html do
+ quote do
+ use Phoenix.Component
+
+ # Import convenience functions from controllers
+ import Phoenix.Controller,
+ only: [get_csrf_token: 0, view_module: 1, view_template: 1]
+
+ # Include general helpers for rendering HTML
+ unquote(html_helpers())
+ end
+ end
+
+ defp html_helpers do
+ quote do
+ # HTML escaping functionality
+ import Phoenix.HTML
+ # Core UI components and translation
+ import DuckOnlyWeb.CoreComponents
+ import DuckOnlyWeb.Gettext
+
+ # Shortcut for generating JS commands
+ alias Phoenix.LiveView.JS
+
+ # Routes generation with the ~p sigil
+ unquote(verified_routes())
+ end
+ end
+
+ def verified_routes do
+ quote do
+ use Phoenix.VerifiedRoutes,
+ endpoint: DuckOnlyWeb.Endpoint,
+ router: DuckOnlyWeb.Router,
+ statics: DuckOnlyWeb.static_paths()
+ end
+ end
+
+ @doc """
+ When used, dispatch to the appropriate controller/live_view/etc.
+ """
+ defmacro __using__(which) when is_atom(which) do
+ apply(__MODULE__, which, [])
+ end
+end
diff --git a/examples/duck_only/lib/duck_only_web/components/core_components.ex b/examples/duck_only/lib/duck_only_web/components/core_components.ex
new file mode 100644
index 0000000..1123e13
--- /dev/null
+++ b/examples/duck_only/lib/duck_only_web/components/core_components.ex
@@ -0,0 +1,676 @@
+defmodule DuckOnlyWeb.CoreComponents do
+ @moduledoc """
+ Provides core UI components.
+
+ At first glance, this module may seem daunting, but its goal is to provide
+ core building blocks for your application, such as modals, tables, and
+ forms. The components consist mostly of markup and are well-documented
+ with doc strings and declarative assigns. You may customize and style
+ them in any way you want, based on your application growth and needs.
+
+ The default components use Tailwind CSS, a utility-first CSS framework.
+ See the [Tailwind CSS documentation](https://tailwindcss.com) to learn
+ how to customize them or feel free to swap in another framework altogether.
+
+ Icons are provided by [heroicons](https://heroicons.com). See `icon/1` for usage.
+ """
+ use Phoenix.Component
+
+ alias Phoenix.LiveView.JS
+ import DuckOnlyWeb.Gettext
+
+ @doc """
+ Renders a modal.
+
+ ## Examples
+
+ <.modal id="confirm-modal">
+ This is a modal.
+
+
+ JS commands may be passed to the `:on_cancel` to configure
+ the closing/cancel event, for example:
+
+ <.modal id="confirm" on_cancel={JS.navigate(~p"/posts")}>
+ This is another modal.
+
+
+ """
+ attr :id, :string, required: true
+ attr :show, :boolean, default: false
+ attr :on_cancel, JS, default: %JS{}
+ slot :inner_block, required: true
+
+ def modal(assigns) do
+ ~H"""
+
+ """
+ end
+
+ @doc """
+ Shows the flash group with standard titles and content.
+
+ ## Examples
+
+ <.flash_group flash={@flash} />
+ """
+ attr :flash, :map, required: true, doc: "the map of flash messages"
+ attr :id, :string, default: "flash-group", doc: "the optional id of flash container"
+
+ def flash_group(assigns) do
+ ~H"""
+
+ <.flash kind={:info} title={gettext("Success!")} flash={@flash} />
+ <.flash kind={:error} title={gettext("Error!")} flash={@flash} />
+ <.flash
+ id="client-error"
+ kind={:error}
+ title={gettext("We can't find the internet")}
+ phx-disconnected={show(".phx-client-error #client-error")}
+ phx-connected={hide("#client-error")}
+ hidden
+ >
+ <%= gettext("Attempting to reconnect") %>
+ <.icon name="hero-arrow-path" class="ml-1 h-3 w-3 animate-spin" />
+
+
+ <.flash
+ id="server-error"
+ kind={:error}
+ title={gettext("Something went wrong!")}
+ phx-disconnected={show(".phx-server-error #server-error")}
+ phx-connected={hide("#server-error")}
+ hidden
+ >
+ <%= gettext("Hang in there while we get back on track") %>
+ <.icon name="hero-arrow-path" class="ml-1 h-3 w-3 animate-spin" />
+
+
+ """
+ end
+
+ @doc """
+ Renders a simple form.
+
+ ## Examples
+
+ <.simple_form for={@form} phx-change="validate" phx-submit="save">
+ <.input field={@form[:email]} label="Email"/>
+ <.input field={@form[:username]} label="Username" />
+ <:actions>
+ <.button>Save
+
+
+ """
+ attr :for, :any, required: true, doc: "the data structure for the form"
+ attr :as, :any, default: nil, doc: "the server side parameter to collect all input under"
+
+ attr :rest, :global,
+ include: ~w(autocomplete name rel action enctype method novalidate target multipart),
+ doc: "the arbitrary HTML attributes to apply to the form tag"
+
+ slot :inner_block, required: true
+ slot :actions, doc: "the slot for form actions, such as a submit button"
+
+ def simple_form(assigns) do
+ ~H"""
+ <.form :let={f} for={@for} as={@as} {@rest}>
+
+ <%= render_slot(@inner_block, f) %>
+
+ <%= render_slot(action, f) %>
+
+
+
+ """
+ end
+
+ @doc """
+ Renders a button.
+
+ ## Examples
+
+ <.button>Send!
+ <.button phx-click="go" class="ml-2">Send!
+ """
+ attr :type, :string, default: nil
+ attr :class, :string, default: nil
+ attr :rest, :global, include: ~w(disabled form name value)
+
+ slot :inner_block, required: true
+
+ def button(assigns) do
+ ~H"""
+
+ """
+ end
+
+ @doc """
+ Renders an input with label and error messages.
+
+ A `Phoenix.HTML.FormField` may be passed as argument,
+ which is used to retrieve the input name, id, and values.
+ Otherwise all attributes may be passed explicitly.
+
+ ## Types
+
+ This function accepts all HTML input types, considering that:
+
+ * You may also set `type="select"` to render a `