medirater is a questionaire web app for evalutating medical images.
Evaluater
Annotator
uv sync --dev
cp .env.example .envFor local run, keep at least:
APP_WEBAUTHN_RP_ID=localhost
APP_WEBAUTHN_ORIGIN=http://localhost:8000uv run uvicorn app.main:app --reload --host 127.0.0.1 --port 8000The app is available at: http://localhost:8000/
To register a superadmin account, open another terminal session, and generate a one-time signup token:
uv run python scripts/create_bootstrap_token.py --expires-in-minutes 120Use that token at:
http://localhost:8000/admin/signup
After creating the first superadmin account, manage signup mode and invite tokens from:
http://localhost:8000/users

