mirror of
https://github.com/tanrax/python-api-frameworks-benchmark
synced 2026-01-08 06:13:37 +01:00
9 lines
229 B
Bash
Executable File
9 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
# Run Django Ninja benchmark server
|
|
# Port: 8003
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "Starting Django Ninja on port 8003..."
|
|
exec uvicorn django_project.asgi:application --host 0.0.0.0 --port 8003 --workers 1 --no-access-log
|