-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
52 lines (40 loc) · 955 Bytes
/
requirements.txt
File metadata and controls
52 lines (40 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Core dependencies
Django==4.2.10
python-decouple>=3.8,<4.0
Pillow>=10.0,<11.0
Pygments>=2.15,<3.0
# Database
psycopg2-binary>=2.9,<3.0
# Caching and sessions
redis>=5.0,<6.0
django-redis>=5.4,<6.0
# Web server
gunicorn>=21.2,<22.0
# HTTP client (for healthcheck)
requests>=2.31,<3.0
# Production optimizations
whitenoise>=6.5,<7.0 # Static file serving
django-compressor>=4.4,<5.0 # CSS/JS compression
# Security
django-cors-headers>=4.3,<5.0
django-csp>=3.7,<4.0 # Content Security Policy
# Monitoring and debugging (production)
sentry-sdk>=1.39,<2.0
django-extensions>=3.2,<4.0
# Testing
pytest>=7.4,<8.0
pytest-django>=4.7,<5.0
pytest-cov>=4.1,<5.0
playwright>=1.40,<2.0
# Code quality
black>=23.12,<24.0
flake8>=6.1,<7.0
isort>=5.13,<6.0
# Documentation
markdown>=3.5,<4.0
linkify-it-py>=2.0,<3.0
# Optional: Image processing
# Pillow>=10.1,<11.0
# Optional: API framework
# djangorestframework>=3.14,<4.0
# django-filter>=23.5,<24.0