6 lines
90 B
Bash
6 lines
90 B
Bash
1 month ago
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
. /app/venv/bin/activate
|
||
|
exec uvicorn app:app "$@"
|