5 lines
163 B
Bash
5 lines
163 B
Bash
|
|
#!/bin/bash
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
source .venv/bin/activate 2>/dev/null || { echo "Run setup.sh first"; exit 1; }
|
||
|
|
nice -n 10 python -m badnote_server.ocr.worker
|