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 @@
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 */