Files
game-library/docker-compose.yml
Marius Mutu a19ddf0b71 Refactor extraction system and reorganize project structure
- Remove obsolete documentation files (DEPLOYMENT.md, PLAN_IMPLEMENTARE_S8_DETALIAT.md, README.md)
- Add comprehensive extraction pipeline with multiple format support (PDF, HTML, text)
- Implement Claude-based activity extraction with structured templates
- Update dependencies and Docker configuration
- Reorganize scripts directory with modular extraction components
- Move example documentation to appropriate location

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-11 23:32:37 +03:00

31 lines
644 B
YAML

services:
# Main web application
web:
build: .
ports:
- "5000:5000"
volumes:
- ./data:/app/data:rw
environment:
- FLASK_ENV=production
- FLASK_HOST=0.0.0.0
- FLASK_PORT=5000
- DATABASE_URL=/app/data/activities.db
- SECRET_KEY=${SECRET_KEY:-production-secret-key-change-me}
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
app-data:
driver: local