generated from JustScreaMy/ProjectTemplate
8 lines
No EOL
135 B
Bash
Executable file
8 lines
No EOL
135 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
uvicorn \
|
|
--host 0.0.0.0 \
|
|
--port 8000 \
|
|
--workers 4 \
|
|
backend.asgi:application |