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
+2 -2
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# -------------------------------------------------------------
# Debug helper for NexusReader.Web.New (Blazor Server)
# Debug helper for NexusReader.Web (Blazor Server)
# -------------------------------------------------------------
# 1️⃣ Ensure the port is free before starting the server.
# 2️⃣ Starts the server project in the background.
@@ -10,7 +10,7 @@
# -------------------------------------------------------------
# ---- configuration ------------------------------------------------
SERVER_PROJECT="src/NexusReader.Web.New/NexusReader.Web.csproj"
SERVER_PROJECT="src/NexusReader.Web/NexusReader.Web.csproj"
APP_URL="http://localhost:5104"
DEBUG_PORT=9222
TMP_PROFILE="/tmp/blazor-chrome-debug"