docs: document cursor theme source state
Some checks failed
CI / Backend (lint + tests + compose) (push) Has been cancelled
CI / Frontend (lint + type-check + build) (push) Has been cancelled

This commit is contained in:
Vadim Malanov
2026-06-21 12:42:05 +03:00
parent 9b84e38f5a
commit 18dd4718d8
2 changed files with 7 additions and 3 deletions

View File

@@ -177,10 +177,10 @@ with citations.
| Service | URL | Credentials | | Service | URL | Credentials |
|---------------|--------------------------------------|----------------------------| |---------------|--------------------------------------|----------------------------|
| API docs | <http://localhost:8050/docs> | - | | API docs | <http://localhost:8050/docs> | - |
| MinIO console | <http://localhost:9001> | `legacyhub` / `legacyhub-secret` | | MinIO console | <http://localhost:9001> | use `.env` or `.env.example` placeholders; do not reuse literal secrets from docs |
| OpenSearch | <http://localhost:9200> | - | | OpenSearch | <http://localhost:9200> | - |
| Qdrant UI | <http://localhost:6333/dashboard> | - | | Qdrant UI | <http://localhost:6333/dashboard> | - |
| Postgres | `localhost:5440` | `legacyhub` / `legacyhub` | | Postgres | `localhost:5440` | use local runtime credentials from `.env`; docs intentionally avoid literal reusable values |
```bash ```bash
# Count docs in OpenSearch # Count docs in OpenSearch

View File

@@ -88,7 +88,11 @@ frontend/src/
- **States** — skeleton shimmer instead of spinners wherever possible. - **States** — skeleton shimmer instead of spinners wherever possible.
- **Cursor** — `@teamhub/cursor-theme` supplies the shared TeamHUB cursor - **Cursor** — `@teamhub/cursor-theme` supplies the shared TeamHUB cursor
contract; Tailwind `cursor-pointer` and `cursor-not-allowed` utilities are contract; Tailwind `cursor-pointer` and `cursor-not-allowed` utilities are
overridden in `src/styles/globals.css` to use `--teamhub-cursor-*`. overridden in `src/styles/globals.css` to use `--teamhub-cursor-*`. The
dependency is currently declared as
`file:../../../Engines/engines/teamhub-cursor-theme` in `frontend/package.json`;
the current source package version is `0.1.0` from the Engines package
manifest, and the consumer is not yet pinned to a release tag.
### Key flows ### Key flows