teampulse/start.sh

13 lines
293 B
Bash
Executable File

#!/bin/bash
set -e
cd "$(dirname "$0")"
if [ ! -d ".venv" ]; then
echo "Erstelle virtuelle Umgebung..."
python3.12 -m venv .venv
.venv/bin/pip install -r requirements-dev.txt -q
.venv/bin/playwright install chromium
fi
PYTHONDONTWRITEBYTECODE=1 .venv/bin/python main.py "$@"