Start the server: uv run uvicorn main:app --reload --host 0.0.0.0 --port 8080
JWKS: curl -s http://localhost:8080/.well-known/jwks.json | jq
Mint a token: curl -s -X POST http://localhost:8080/token -H 'content-type: application/json' -d '{"sub":"alice","exp_in":120}' | jq -r .token
Rotate key: curl -s -X POST http://localhost:8080/rotate | jq
Health: curl -s http://localhost:8080/healthz | jq