mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 07:52:55 +00:00
BREAKING CHANGES: - Remove complex security middleware, validators, and cache utils - Replace 430-line CLAUDE.md with 156-line simplified version - Remove 5 complex CapRover optimization docs (1,000+ lines) - Add simplified alternatives: * simple_settings.py - Basic Django config * simple_services.py - No-cache agent management * requirements-simple.txt - 10 vs 24 dependencies * Dockerfile.simple - Streamlined container * README-SIMPLE.md - Focused deployment guide RATIONALE: - Original was enterprise-grade (Redis, CSP, security monitoring) - New version focuses on core CapRover deployment needs - 75% reduction in documentation complexity - Removed: Redis, rate limiting, security scanning, rollback systems - Kept: Basic Django, agents, auth, payments, static files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
302 B
Plaintext
18 lines
302 B
Plaintext
# Core Django dependencies for CapRover deployment
|
|
Django==5.2.4
|
|
djangorestframework==3.15.2
|
|
python-decouple==3.8
|
|
|
|
# Database
|
|
dj-database-url==2.1.0
|
|
psycopg2-binary==2.9.10
|
|
|
|
# Static files
|
|
whitenoise==6.8.2
|
|
|
|
# Production server
|
|
gunicorn==21.2.0
|
|
|
|
# Essential integrations
|
|
stripe==12.3.0
|
|
requests==2.32.4 |