teampulse/start.sh
2026-05-17 11:49:23 +02:00

13 lines
262 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
.venv/bin/python main.py