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 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 {
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; }