#!/usr/bin/env bash set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" cd "$SCRIPT_DIR" python3 -m venv .venv .venv/bin/python -m pip install --upgrade pip .venv/bin/python -m pip install -r requirements.txt if [[ ! -f config.yaml ]]; then cp config.example.yaml config.yaml fi echo "Installeret. Rediger config.yaml og start med ./run-linux.sh"