First Admin Login
On a brand-new install there are no users yet. The dev module ships a token-minting endpoint that lets you generate an administrator JWT without going through registration.
ORKESTRA_API_URL=http://localhost:3000 ./scripts/devtoken.sh administrator
The script prints a Bearer token. Paste it into the admin UI's login form (or any API client) to access the platform with the administrator role.
:::warning Production
The dev module is automatically disabled in production builds. Never expose it on a public-facing instance.
:::
What to do next
- Configure SMTP at
/admin/modulesso verification and password-reset emails are delivered (the defaultnoopdriver logs them to stdout). - Create your real administrator user via the standard registration flow.
- Disable the
devmodule once you're done with the bootstrap.