← back to Analytics Chips
snapshot: 3 file(s) changed, +2 new, ~1 modified
4a62fd885da6cac2e9f164d64e8938536ebe7f19 · 2026-05-13 08:57:45 -0700 · Steve
Files touched
A ecosystem.config.cjsA public/favicon.svgM public/index.html
Diff
commit 4a62fd885da6cac2e9f164d64e8938536ebe7f19
Author: Steve <steve@designerwallcoverings.com>
Date: Wed May 13 08:57:45 2026 -0700
snapshot: 3 file(s) changed, +2 new, ~1 modified
---
ecosystem.config.cjs | 19 +++++++++++++++++++
public/favicon.svg | 6 ++++++
public/index.html | 2 ++
3 files changed, 27 insertions(+)
diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs
new file mode 100644
index 0000000..76d4d29
--- /dev/null
+++ b/ecosystem.config.cjs
@@ -0,0 +1,19 @@
+module.exports = {
+ apps: [{
+ name: "analytics-chips",
+ script: "server.js",
+ cwd: __dirname,
+ env: {
+ HOST: "0.0.0.0",
+ BIND: "0.0.0.0",
+ FLASK_RUN_HOST: "0.0.0.0",
+ UVICORN_HOST: "0.0.0.0",
+ GUNICORN_BIND: "0.0.0.0:8000",
+ HOSTNAME: "0.0.0.0",
+ VITE_HOST: "0.0.0.0",
+ NEXT_TELEMETRY_DISABLED: "1",
+ },
+ autorestart: true,
+ max_memory_restart: "300M",
+ }],
+};
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..89aabef
--- /dev/null
+++ b/public/favicon.svg
@@ -0,0 +1,6 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
+ <rect width="64" height="64" rx="10" fill="#0a0a0a"/>
+ <text x="50%" y="50%" text-anchor="middle" dominant-baseline="central"
+ font-family="Georgia, 'Times New Roman', serif" font-weight="700"
+ font-size="32" fill="#ffffff">AN</text>
+</svg>
diff --git a/public/index.html b/public/index.html
index 215a021..a867fbf 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,5 +1,7 @@
<!doctype html>
<html lang="en"><head>
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg">
+
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Analytics · Steve fleet</title>
← be62a0e gitignore: protect .env* from accidental commits per MEMORY
·
back to Analytics Chips
·
gitignore: cover *.bak/*.pre-* snapshots; add Express 404-gu 31c1781 →