chore: Local development environment setup

- Installed system dependencies (Redis, Tesseract, poppler-utils)
- Downloaded and configured Meilisearch 1.11.3
- Initialized SQLite database with schema
- Started all services successfully:
  - Meilisearch on port 7700
  - Redis on port 6379
  - Backend API on port 3001
  - OCR Worker (BullMQ)
  - Frontend dev server on port 5174

All health checks passing. Ready for testing.

\ud83e\udd16 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
ggq-admin 2025-10-19 04:42:55 +02:00
parent 86f92d443c
commit 09892de4a3
2 changed files with 20 additions and 0 deletions

20
SERVICES_STATUS.md Normal file
View file

@ -0,0 +1,20 @@
# NaviDocs Services Status
**Date:** $(date)
## Running Services
| Service | Status | Port | PID | Log File |
|---------|--------|------|-----|----------|
| Meilisearch | ✅ Running | 7700 | 43579 | logs/meilisearch.log |
| Redis | ✅ Running | 6379 | - | - |
| Backend API | ✅ Running | 3001 | 44010 | logs/server.log |
| OCR Worker | ✅ Running | - | 44285 | logs/worker.log |
| Frontend | ✅ Running | 5174 | 44566 | logs/client.log |
## Health Checks
{"status":"available"}
Backend API:
{"status":"ok","timestamp":1760841742430,"uptime":423.056713294}
Frontend: http://localhost:5174/

View file