From b954e0aa2ac3e5d1c7e791db5530f869aae898df Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Mon, 9 Mar 2026 23:18:53 -0500 Subject: [PATCH] fix(docs): restore full quick start steps, fix architecture visibility Restore original 6-step quick start with comments. Increase arch flow box contrast (bg-deep background, stronger border) and arrow size. Co-Authored-By: Claude Opus 4.6 --- docs/website/index.html | 29 ++++++++++++++++++++++------- docs/website/style.css | 10 +++++----- 2 files changed, 27 insertions(+), 12 deletions(-) diff --git a/docs/website/index.html b/docs/website/index.html index 347d4b2..1c350b8 100644 --- a/docs/website/index.html +++ b/docs/website/index.html @@ -229,15 +229,15 @@
Routers
-
+
Go Pollers
-
+
NATS Event Bus
-
+
FastAPI Backend
-
+
PostgreSQL + TimescaleDB
-
+
React Web Interface
@@ -315,9 +315,24 @@ Terminal -
git clone https://github.com/staack/the-other-dude
+        
# Clone the repo
+git clone https://github.com/staack/the-other-dude.git
 cd the-other-dude
-docker compose up
+ +# Configure +cp .env.example .env + +# Start infrastructure +docker compose up -d + +# Build app images +docker compose build api && docker compose build poller && docker compose build frontend + +# Launch +docker compose up -d + +# Open TOD +open http://localhost:3000
diff --git a/docs/website/style.css b/docs/website/style.css index 9cf3c77..2eefb84 100644 --- a/docs/website/style.css +++ b/docs/website/style.css @@ -563,18 +563,18 @@ ul, ol { font-family: "Fira Code", "SF Mono", monospace; font-size: 0.95rem; color: var(--text-primary); - background: var(--bg-elevated); - border: 1px solid var(--border-accent); + background: var(--bg-deep); + border: 1px solid rgba(42, 157, 143, 0.4); border-radius: 8px; - padding: 10px 28px; + padding: 12px 32px; letter-spacing: 0.02em; } .arch-flow-arrow { color: var(--accent); - font-size: 1.2rem; + font-size: 1.4rem; line-height: 1; - padding: 4px 0; + padding: 6px 0; } /* CTA closing */