docs: fix stale references to consolidated services and migrated dashboards
This commit is contained in:
parent
27f271d983
commit
e6eee35544
12
AGENTS.md
12
AGENTS.md
@ -146,13 +146,13 @@ learning_ai_common_plat/
|
|||||||
|
|
||||||
### Dashboard Consumers (via `file:` refs)
|
### Dashboard Consumers (via `file:` refs)
|
||||||
|
|
||||||
The following dashboards in `../learning_voice_ai_agent/` consume `@bytelyst/*` packages:
|
The following dashboards consume `@bytelyst/*` packages:
|
||||||
|
|
||||||
| Dashboard | Packages Used |
|
| Dashboard | Location | Packages Used |
|
||||||
| ----------------------- | ------------------------------------------------------------ |
|
| ---------------------------------- | --------------------------------------- | ------------------------------------------------------------ |
|
||||||
| `admin-dashboard-web` | api-client, auth, config, cosmos, errors, logger, react-auth |
|
| `admin-web` | `dashboards/admin-web/` (this repo) | api-client, auth, config, cosmos, errors, logger, react-auth |
|
||||||
| `user-dashboard-web` | api-client, auth, config, cosmos, errors, logger, react-auth |
|
| `user-dashboard-web` | `../learning_voice_ai_agent/` | api-client, auth, config, cosmos, errors, logger, react-auth |
|
||||||
| `tracker-dashboard-web` | api-client, config, cosmos, errors |
|
| `tracker-web` | `dashboards/tracker-web/` (this repo) | api-client, config, cosmos, errors |
|
||||||
|
|
||||||
**Prerequisite:** Run `pnpm build` in this repo before running `npm install` in any dashboard.
|
**Prerequisite:** Run `pnpm build` in this repo before running `npm install` in any dashboard.
|
||||||
|
|
||||||
|
|||||||
10
MANUAL_CI.md
10
MANUAL_CI.md
@ -53,10 +53,12 @@ pnpm typecheck && pnpm lint && pnpm format:check && pnpm test && pnpm audit
|
|||||||
```bash
|
```bash
|
||||||
cd /path/to/learning_voice_ai_agent
|
cd /path/to/learning_voice_ai_agent
|
||||||
|
|
||||||
# Dashboards
|
# User dashboard (only one remaining in this repo)
|
||||||
cd admin-dashboard-web && npm run typecheck && npm run lint && npm test
|
cd user-dashboard-web && npm run typecheck && npm run lint && npm test
|
||||||
cd ../user-dashboard-web && npm run typecheck && npm run lint && npm test
|
|
||||||
cd ../tracker-dashboard-web && npm run typecheck && npm run lint && npm test
|
# Admin + Tracker dashboards now in learning_ai_common_plat/dashboards/
|
||||||
|
cd /path/to/learning_ai_common_plat/dashboards/admin-web && npm run typecheck && npm run lint && npm test
|
||||||
|
cd ../tracker-web && npm run typecheck && npm run lint && npm test
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
make lint && python -m pytest tests/ backend/tests/
|
make lint && python -m pytest tests/ backend/tests/
|
||||||
|
|||||||
23
README.md
23
README.md
@ -43,11 +43,12 @@ learning_ai_common_plat/
|
|||||||
│ ├── api-client/ # Configurable fetch wrapper
|
│ ├── api-client/ # Configurable fetch wrapper
|
||||||
│ ├── react-auth/ # React auth context factory
|
│ ├── react-auth/ # React auth context factory
|
||||||
│ └── design-tokens/ # Cross-platform tokens (JSON → CSS/TS/Kotlin/Swift)
|
│ └── design-tokens/ # Cross-platform tokens (JSON → CSS/TS/Kotlin/Swift)
|
||||||
|
├── dashboards/ # Product-agnostic web dashboards (Next.js)
|
||||||
|
│ ├── admin-web/ # Platform admin console (port 3001)
|
||||||
|
│ └── tracker-web/ # Issue tracker + public roadmap (port 3003)
|
||||||
├── services/ # Product-agnostic microservices
|
├── services/ # Product-agnostic microservices
|
||||||
│ ├── platform-service/ # Auth, audit, flags, notifications, blob (port 4003)
|
│ ├── platform-service/ # Consolidated: auth, audit, flags, billing, growth, tracker (port 4003)
|
||||||
│ ├── billing-service/ # Subscriptions, Stripe, usage, licenses (port 4002)
|
│ ├── extraction-service/ # LangExtract text extraction + Python sidecar (port 4005)
|
||||||
│ ├── growth-service/ # Invitations, referrals, promos (port 4001)
|
|
||||||
│ ├── tracker-service/ # Items, comments, votes, public roadmap (port 4004)
|
|
||||||
│ └── monitoring/ # Loki + Grafana config, health-check
|
│ └── monitoring/ # Loki + Grafana config, health-check
|
||||||
└── docs/ # Architecture docs, roadmap, analysis
|
└── docs/ # Architecture docs, roadmap, analysis
|
||||||
```
|
```
|
||||||
@ -72,13 +73,13 @@ learning_ai_common_plat/
|
|||||||
|
|
||||||
## Shared Services
|
## Shared Services
|
||||||
|
|
||||||
| Service | Port | Description | Tests |
|
| Service | Port | Description | Tests |
|
||||||
| ------------------ | ---- | --------------------------------------------------------------- | ----- |
|
| -------------------- | ---- | ------------------------------------------------------------------------------ | ------ |
|
||||||
| `platform-service` | 4003 | Auth, audit, feature flags, notifications, blob storage | 55 |
|
| `platform-service` | 4003 | Consolidated: auth, audit, flags, billing, growth, tracker, telemetry, etc. | 1,029 |
|
||||||
| `billing-service` | 4002 | Subscriptions, Stripe webhooks, usage tracking, licenses, plans | 32 |
|
| `extraction-service` | 4005 | LangExtract text extraction + Python sidecar | 46 |
|
||||||
| `growth-service` | 4001 | Invitations, referrals, promo codes | 33 |
|
| `monitoring` | — | Loki + Grafana dashboards, health-check script | — |
|
||||||
| `tracker-service` | 4004 | Feature requests, bugs, tasks, public roadmap | 45 |
|
|
||||||
| `monitoring` | — | Loki + Grafana dashboards, health-check script | — |
|
> Note: billing-service (4002), growth-service (4001), and tracker-service (4004) were consolidated into platform-service (Feb 2026).
|
||||||
|
|
||||||
All services are **product-agnostic** — every Cosmos document includes a `productId` field, so a single deployment serves LysnrAI, MindLyst, or any future product.
|
All services are **product-agnostic** — every Cosmos document includes a `productId` field, so a single deployment serves LysnrAI, MindLyst, or any future product.
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user