chore: update docs

This commit is contained in:
Eric Gullickson
2026-02-05 21:49:35 -06:00
parent b812282d69
commit 87ee498af7
37 changed files with 437 additions and 210 deletions

View File

@@ -0,0 +1,21 @@
# maintenance/
## Files
| File | What | When to read |
| ---- | ---- | ------------ |
| `README.md` | Feature documentation | Understanding maintenance tracking |
| `index.ts` | Feature barrel export | Importing maintenance services |
## Subdirectories
| Directory | What | When to read |
| --------- | ---- | ------------ |
| `api/` | HTTP endpoints and routes | API changes |
| `domain/` | Business logic, services, types | Core maintenance logic |
| `data/` | Repository, database queries | Database operations |
| `docs/` | Feature-specific documentation | Maintenance design details |
| `events/` | Event handlers and emitters | Cross-feature event integration |
| `external/` | External service integrations | Third-party API work |
| `migrations/` | Database schema | Schema changes |
| `tests/` | Unit and integration tests | Adding or modifying tests |