Files
thrilltrack-explorer/django/requirements/base.txt
pacnpal 9122320e7e Add ReviewEvent model and ReviewSubmissionService for review management
- Created a new ReviewEvent model to track review events with fields for content, rating, moderation status, and timestamps.
- Added ForeignKey relationships to connect ReviewEvent with ContentSubmission, User, and Review.
- Implemented ReviewSubmissionService to handle review submissions, including creation, updates, and moderation workflows.
- Introduced atomic transactions to ensure data integrity during review submissions and updates.
- Added logging for review submission and moderation actions for better traceability.
- Implemented validation to prevent duplicate reviews and ensure only the review owner can update their review.
2025-11-08 16:49:58 -05:00

73 lines
1.2 KiB
Plaintext

# Core Django
Django==4.2.8
psycopg[binary]==3.2.3
# API Framework (django-ninja for FastAPI-style performance)
django-ninja==1.1.0
pydantic==2.10.6
# Database & ORM utilities
django-model-utils==4.3.1
django-guardian==2.4.0
django-lifecycle==1.0.0
django-fsm==2.8.1
django-dirtyfields==1.9.2
# Async & Background Tasks
celery[redis]==5.3.4
django-celery-beat==2.5.0
django-celery-results==2.5.1
flower==2.0.1
# Caching & Performance
django-redis==5.4.0
django-cacheops==7.0.2
hiredis==2.3.2
# Real-time
channels==4.0.0
channels-redis==4.1.0
daphne==4.0.0
# Media & Storage
django-storages[s3]==1.14.2
Pillow==11.0.0
python-magic==0.4.27
# Security
django-cors-headers==4.3.1
django-ratelimit==4.1.0
django-otp==1.3.0
django-allauth==0.58.2
djangorestframework-simplejwt==5.3.1
django-defender==0.9.7
# Validation & Serialization
marshmallow==3.20.1
# Admin Interface
django-unfold==0.40.0
django-import-export==4.2.0
tablib[html,xls,xlsx]==3.7.0
# Utilities
django-extensions==3.2.3
django-environ==0.11.2
django-filter==23.5
python-slugify==8.0.1
python-dateutil==2.8.2
# Monitoring & Logging
sentry-sdk==1.39.1
structlog==23.2.0
# HTTP & External APIs
requests==2.31.0
httpx==0.25.2
# UUID utilities
shortuuid==1.0.11
# History tracking
django-pghistory==3.4.0