refactor: complete web project consolidation and stabilize identity flow

- Finalized move from NexusReader.Web.New to NexusReader.Web
- Implemented robust ServerIdentityService with UserManager and SignInManager
- Updated UI components to handle authentication state synchronization via force reload
- Refined BookIngestionModal styling following Nexus Neon design system
- Resolved namespace conflicts and updated CI/CD/VS Code configurations
- Fixes #33
This commit is contained in:
2026-05-11 20:42:57 +02:00
parent f864580207
commit e1f1a4b3cb
41 changed files with 1280 additions and 743 deletions
@@ -39,8 +39,8 @@ This skill defines the architectural guardrails for the NexusReader project to e
### 6. Database Schema Changes
- Every change to a Domain entity or DbContext MUST be followed by the generation of a new EF Core migration.
- **Mandatory Commands**:
- `dotnet ef migrations add <MigrationName> --project src/NexusReader.Data --startup-project src/NexusReader.Web.New`
- `dotnet ef database update --project src/NexusReader.Data --startup-project src/NexusReader.Web.New`
- `dotnet ef migrations add <MigrationName> --project src/NexusReader.Data --startup-project src/NexusReader.Web`
- `dotnet ef database update --project src/NexusReader.Data --startup-project src/NexusReader.Web`
- Ensure the migration is applied to all local development environments before proceeding with feature verification.
## Audit Scripts