Developer Search
Press ⌘K or Ctrl+K to jump through guides and API endpoint docs.
Sandbox
Sandbox and Test Environment
Non-production environment for integration rehearsals before production rollout.
Identity
Test Tenant
Run all validation against dedicated test tenants and users.
Data
Safe Test Inputs
Use non-production accounts and seeded data for integration checks.
Automation
Repeatable E2E
Keep deterministic E2E runs for happy paths and failure handling.
Local Stack Bootstrap
# run local stack (auth + api + web)
WEB_PORT=3310 bash scripts/run_web_e2e_stack.sh- Starts local auth + API + web surfaces for testing.
- Supports Playwright validation of docs and API usage flows.
- Keeps production systems isolated from test traffic.
Validation Suite
# docs and API flow checks
pnpm --filter @aegis/web test:e2e -- test/e2e/web/api-docs.spec.ts- Verifies developer routes and endpoint pages are reachable.
- Verifies docs search and mobile behavior.
- Verifies endpoint examples render and can be copied safely.
Sandbox Exit Criteria
- Critical API flows pass end-to-end.
- Error handling paths are validated and documented.
- Desktop and mobile docs experience passes E2E checks.
- Support handoff notes are ready for rollout.