- Move all major feature docs (logging, binary, SignalR, DataSource) into per-project `docs/` folders with dedicated Markdown files. - Split monolithic docs into focused files: `BINARY_FORMAT.md`, `BINARY_FEATURES.md`, `BINARY_OPTIONS.md`, `LOGGING.md`, `LOGGING_SERVER.md`, `LOGGING_REMOTE.md`, `SIGNALR.md`, `SIGNALR_SERVER.md`, `SIGNALR_DATASOURCE.md`. - Update all references in `README.md`, `copilot-instructions.md`, `GLOSSARY.md`, and `ARCHITECTURE.md` to point to the correct per-project doc. - Add documentation tables to each project’s `README.md` and clarify folder structure. - Update `.csproj` files to include `docs/**/*.md` for packaging. - Remove obsolete/moved docs from the solution file. - Ensure all technical debt warnings and cross-references are preserved and accurate. - No code changes; documentation only. |
||
|---|---|---|
| .. | ||
| Emails | ||
| Logins | ||
| SignalRs | ||
| docs | ||
| AyCode.Services.Server.csproj | ||
| README.md | ||
README.md
AyCode.Services.Server
Server-side service implementations: JWT authentication, SendGrid email delivery, SignalR hub infrastructure with binary protocol, session management, and change-tracked data sources.
Documentation
| Document | Topic |
|---|---|
| SIGNALR_SERVER.md | Server-side SignalR hub (dispatch, session, broadcast) |
| SIGNALR_DATASOURCE.md | Real-time DataSource with CRUD & change tracking |
Folder Structure
| Folder | Purpose |
|---|---|
Emails/ |
SendGrid email service (registration, password reset) |
Logins/ |
Server-side login with JWT token generation |
SignalRs/ |
SignalR hub base, session service, data source with change tracking, client broadcast |
Dependencies
| Dependency | Purpose |
|---|---|
AyCode.Core |
Core types, serializers |
AyCode.Core.Server |
GlobalLogger |
AyCode.Database |
Data access layer |
AyCode.Entities / AyCode.Entities.Server |
Entity types |
AyCode.Interfaces / AyCode.Interfaces.Server |
Service contracts |
AyCode.Models / AyCode.Models.Server |
DTOs, dynamic method dispatch |
AyCode.Services |
Client-side SignalR base, tag attributes |
SendGrid |
Email delivery |
Microsoft.AspNetCore.SignalR.* |
SignalR server |
Microsoft.AspNetCore.Cryptography.KeyDerivation |
Password hashing |
Microsoft.AspNetCore.Authentication.JwtBearer |
JWT auth (transitive) |