Files
python-api-frameworks-bench…/run_drf.sh
Andros Fenollosa 3cb1fdc09f Add Django REST Framework to benchmark comparison
- Added DRF implementation with identical endpoints
- Updated benchmark scripts to include DRF (port 8005)
- Ran comprehensive benchmarks with all 5 frameworks
- Updated documentation and results
- Generated new comparison graphs

Results show Django Bolt leading in all endpoints, with DRF
showing lowest JSON performance but competitive DB performance.
2025-12-25 20:12:21 +01:00

9 lines
247 B
Bash
Executable File

#!/bin/bash
# Run Django REST Framework benchmark server
# Port: 8005
cd "$(dirname "$0")"
echo "Starting Django REST Framework on port 8005..."
exec uvicorn django_project.asgi:application --host 0.0.0.0 --port 8005 --workers 1 --no-access-log