Files
honeyDueAPI/docker-compose.dev.yml
Trey t 469f21a833 Add PDF reports, file uploads, admin auth, and comprehensive tests
Features:
- PDF service for generating task reports with ReportLab-style formatting
- Storage service for file uploads (local and S3-compatible)
- Admin authentication middleware with JWT support
- Admin user model and repository

Infrastructure:
- Updated Docker configuration for admin panel builds
- Email service enhancements for task notifications
- Updated router with admin and file upload routes
- Environment configuration updates

Tests:
- Unit tests for handlers (auth, residence, task)
- Unit tests for models (user, residence, task)
- Unit tests for repositories (user, residence, task)
- Unit tests for services (residence, task)
- Integration test setup
- Test utilities for mocking database and services

Database:
- Admin user seed data
- Updated test data seeds

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-27 23:36:20 -06:00

41 lines
757 B
YAML

# Development configuration - use with:
# docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
services:
db:
ports:
- "5433:5432" # Use 5433 to avoid conflicts with other projects
redis:
ports:
- "6380:6379" # Use 6380 to avoid conflicts
api:
build:
context: .
target: api
environment:
DEBUG: "true"
volumes:
- ./:/app/src:ro # Mount source for debugging
ports:
- "8000:8000"
admin:
build:
context: .
target: admin
environment:
NEXT_PUBLIC_API_URL: "http://localhost:8000"
ports:
- "3000:3000"
worker:
build:
context: .
target: worker
environment:
DEBUG: "true"
volumes:
- ./:/app/src:ro