docs: update documentation with Celery/Redis and Makefile changes
- Update Makefile help sections with correct target names (platform-install) - Add Celery infrastructure section to background-tasks.md - Update installation.md with Celery setup instructions and environment vars - Update index.md with comprehensive development commands including Celery - Add Flower monitoring and task queue commands to docs Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -354,26 +354,37 @@ Quick reference for common development tasks:
|
||||
|
||||
```bash
|
||||
# Setup
|
||||
make install-all # Install all dependencies
|
||||
make install # Install production dependencies
|
||||
make install-all # Install all dependencies (dev + test + docs)
|
||||
make platform-install # First-time setup wizard (validates config)
|
||||
make setup # Complete setup (install + migrate + seed)
|
||||
|
||||
# Development
|
||||
make dev # Start development server
|
||||
make docs-serve # Start documentation server
|
||||
make dev # Start development server (port 8000)
|
||||
make docs-serve # Start documentation server (port 9991)
|
||||
|
||||
# Database
|
||||
make migrate-up # Run migrations
|
||||
make migrate-create message="description" # Create new migration
|
||||
make seed-demo # Seed demo data
|
||||
make db-setup # Complete database setup
|
||||
|
||||
# Background Tasks (Celery)
|
||||
make celery-worker # Start Celery worker
|
||||
make celery-beat # Start Celery scheduler
|
||||
make celery-dev # Start worker + beat together (dev)
|
||||
make flower # Start Flower monitoring (port 5555)
|
||||
|
||||
# Testing
|
||||
make test # Run all tests
|
||||
make test-unit # Run unit tests only
|
||||
make test-coverage # Run with coverage report
|
||||
|
||||
# Code Quality
|
||||
make format # Format code (black + isort)
|
||||
make lint # Run linters
|
||||
make check # Format + lint
|
||||
make format # Format code (ruff)
|
||||
make lint # Run linters (ruff + mypy)
|
||||
make arch-check # Validate architecture patterns
|
||||
make check # Format + lint + verify imports
|
||||
|
||||
# Documentation
|
||||
make docs-build # Build documentation
|
||||
|
||||
Reference in New Issue
Block a user