7 lines
187 B
Bash
Executable File
7 lines
187 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
python3 -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
uvicorn app:app --host ${APP_HOST:-0.0.0.0} --port ${APP_PORT:-8089}
|