From a8395aa0d601a64c65f81d4341fd0b73b8aef142 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 3 Mar 2026 14:54:49 -0800 Subject: [PATCH 1/2] docs: fix Twenty CRM deploy guide container name + boot time Co-Authored-By: Claude Opus 4.6 --- deploy/twenty-crm/DEPLOY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/twenty-crm/DEPLOY.md b/deploy/twenty-crm/DEPLOY.md index ca2491d..9ed633a 100644 --- a/deploy/twenty-crm/DEPLOY.md +++ b/deploy/twenty-crm/DEPLOY.md @@ -20,9 +20,9 @@ EOF # Start the stack docker compose up -d -# Wait for healthy status (may take 1-2 minutes on first boot) +# Wait for healthy status (may take 2-3 minutes on first boot for migrations) docker compose ps -docker logs twenty-server --tail 50 +docker logs twenty-ch-server --tail 50 ``` ## 2. Create Admin Account From c55e28a400ca211d78e85888062847320c8d9886 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 3 Mar 2026 14:58:15 -0800 Subject: [PATCH 2/2] style: gradient background + (you)rSpace wordmark on landing page Co-Authored-By: Claude Opus 4.6 --- server/landing.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/server/landing.ts b/server/landing.ts index 62a4cf1..5111640 100644 --- a/server/landing.ts +++ b/server/landing.ts @@ -59,7 +59,7 @@ export function renderMainLanding(modules: ModuleInfo[]): string {
Community Platform -

(ou)rSpace

+

(you)rSpace

Remember back when the internet was cool?

A collaborative, local-first platform with ${modules.length}+ interoperable tools. @@ -396,6 +396,18 @@ const SPACE_DASHBOARD_CSS = ` const MAIN_LANDING_CSS = ` /* Main landing page extras (on top of rl-* utilities) */ +body { + background: linear-gradient( + 170deg, + #0a0f1e 0%, + #0f172a 25%, + #131b2e 45%, + #0e1628 65%, + #0d1424 85%, + #080d19 100% + ); + background-attachment: fixed; +} .main-wordmark { font-size: 3.5rem; }