mirror of
https://github.com/tanrax/python-api-frameworks-benchmark
synced 2026-01-09 06:43:38 +01:00
9 lines
203 B
Bash
Executable File
9 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
# Run FastAPI benchmark server
|
|
# Port: 8001
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "Starting FastAPI on port 8001..."
|
|
exec uvicorn fastapi_app:app --host 0.0.0.0 --port 8001 --workers 1 --no-access-log
|