Update admin theme/layout and refresh README details.

Align the project baseline with the latest admin interface styling and layout structure while documenting setup and usage updates in README.
This commit is contained in:
vlad
2026-07-14 17:12:28 +03:00
commit 86cc3fa541
278 changed files with 19416 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# Install Secrets Recovery
This project keeps runtime installation secrets in `apps/api/data/secrets/install.env`.
## Important
- Do not rotate `POSTGRES_PASSWORD`, `JWT_ACCESS_SECRET`, or `JWT_REFRESH_PEPPER` automatically after first bootstrap.
- A mismatch between `install.env` and initialized Postgres volume can break database access.
## Safe recovery steps
1. Stop services:
- `docker compose down`
2. Restore `apps/api/data/secrets/install.env` from backup.
3. Start services:
- `docker compose up -d --build`
If backup is unavailable, you have two options:
- Preferred: recover credentials directly from running database/admin secret reveal in another environment.
- Last resort: reset local volumes and lose local dev data:
- `docker compose down -v`
- `python apps/api/scripts/bootstrap_install.py`
- `docker compose up -d --build`
## Dev access ports
To expose DB/Redis/MinIO to host tools:
- `docker compose -f docker-compose.yml -f docker-compose.dev-ports.yml up -d`