|
Some checks failed
CI / Lint, typecheck, test (pull_request) Successful in 7m58s
CI / Build container images (pull_request) Successful in 1m11s
CI / Auth e2e pack (pull_request) Successful in 9m12s
CI / Import/export fidelity gate (pull_request) Successful in 59s
CD / Deploy to Test (push) Blocked by required conditions
CD / Smoke tests against Test (push) Blocked by required conditions
CI / Auth e2e pack (push) Blocked by required conditions
CI / Import/export fidelity gate (push) Blocked by required conditions
CI / Build container images (push) Blocked by required conditions
CD / Build and push images (push) Has been cancelled
CI / Lint, typecheck, test (push) Has been cancelled
CD / Promote to Int (push) Blocked by required conditions
Two findings from Stefan's manual clean install per the guide, both ending in an api restart loop that was hard to diagnose: - #324: the guide recommended `openssl rand -base64 32` for POSTGRES_PASSWORD, but the compose interpolates the password unescaped into DATABASE_URL — base64's `/`, `+`, `=` break the URL. Misleadingly, db stays healthy (it gets the password as a plain env var) while api/collab/backup crash. Guide and .env.example now recommend `openssl rand -hex 24` for both secrets and say why; Troubleshooting gained the symptom line. - #325: SETUP_ADMIN_PASSWORD's minimum (10 chars, packages/shared/src/auth.ts) was undocumented, and a violation crashed the boot with a raw ZodError naming schema fields and i18n keys. Failing the boot stays — deliberately, no half-seeded instance — but preseedFromEnv now translates validation errors into operator terms ("Pre-seeding failed: SETUP_ADMIN_PASSWORD must be at least 10 characters. Fix .env and recreate the api container."). Documented in the guide's first-run section, .env.example, and Troubleshooting; new test pins the message and that nothing is half-seeded afterwards. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017aviRTgWCcAHUh1SBoxf6P |
||
|---|---|---|
| .. | ||
| admin | ||
| audit | ||
| auth | ||
| backup | ||
| branding | ||
| comments | ||
| common | ||
| compaction | ||
| config | ||
| favorites | ||
| files | ||
| fonts | ||
| grants | ||
| health | ||
| home | ||
| i18n | ||
| import-export | ||
| inspector | ||
| labels | ||
| legal | ||
| links | ||
| mcp | ||
| members | ||
| notifications | ||
| pages | ||
| permissions | ||
| plugins | ||
| ponds | ||
| prisma | ||
| public | ||
| public-api | ||
| quotas | ||
| rate-limit | ||
| read-trail | ||
| scheduler | ||
| search | ||
| settings | ||
| setup | ||
| testing | ||
| trash | ||
| users | ||
| versions | ||
| watches | ||
| app.module.ts | ||
| main.ts | ||