6 lines
114 B
Bash
6 lines
114 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd /home/xsl/product
|
|
python -m uvicorn main:app --host 0.0.0.0 --port 8080
|