mirror of
https://github.com/tanrax/python-api-frameworks-benchmark
synced 2026-01-10 07:13:37 +01:00
9 lines
198 B
Bash
Executable File
9 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
# Run Django Bolt benchmark server
|
|
# Port: 8004
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "Starting Django Bolt on port 8004..."
|
|
exec python manage.py runbolt --host 0.0.0.0 --port 8004 --processes 1
|