5 lines
187 B
Bash
5 lines
187 B
Bash
|
|
#!/bin/bash
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
source .venv/bin/activate 2>/dev/null || { echo "Run setup.sh first"; exit 1; }
|
||
|
|
uvicorn badnote_server.main:app --host 0.0.0.0 --port 8080 --workers 1
|