Næste version

This commit is contained in:
2026-04-12 10:25:41 +02:00
parent b678787236
commit 57f3c913b4
18 changed files with 2690 additions and 458 deletions

24
linedance-app/setup.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# Kør fra LinedanceAfspiller/linedance-app/ mappen
echo "=== LineDance Player Setup ==="
# Opret venv hvis den ikke eksisterer
if [ ! -d "venv" ]; then
echo "Opretter virtual environment..."
python3 -m venv venv
fi
# Aktiver venv
source venv/bin/activate
# Installer afhængigheder
echo "Installerer afhængigheder..."
pip install --upgrade pip
pip install -r requirements.txt
echo ""
echo "=== Færdig! ==="
echo "Start programmet med:"
echo " source venv/bin/activate"
echo " python main.py"