Runbook¶
Common tasks¶
| Task | Command |
|---|---|
| Build CSS | npm run build:css |
| Run | dotnet run --project src/ConnectSoft.Blazor.Mfe.Identity.AdminTemplate |
| Run sample shell | dotnet run --project samples/ConnectSoft.Blazor.Mfe.Identity.AdminTemplate.Shell |
| Test | dotnet test |
Troubleshooting¶
| Symptom | Likely cause | Action |
|---|---|---|
| Data resets / looks fake | In-memory stub store in use | Replace stub services with API-backed ones |
| An area is hidden | Feature flag off | Enable in FeatureFlags |
| Login/redirect fails | Authentication config wrong |
Verify Authority, ClientId, RedirectUri, Scopes |
| Build targets wrong TFM | Multi-target net9.0;net10.0 |
Use -f net10.0 / net9.0 as needed |