eight-hourr/run.sh

12 lines
208 B
Bash
Raw Normal View History

2026-07-17 06:55:36 +00:00
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
if [ ! -d ".venv" ]; then
python3 -m venv .venv
fi
source .venv/bin/activate
pip install -q -r backend/requirements.txt
cd backend
python main.py