Skip to content
Snippets Groups Projects
start-app.sh 111 B
#!/bin/sh
set -o errexit
set -o nounset

cd /app
python -m uvicorn "gso.main:app" --host "0.0.0.0" --port 8080