Initial commit: Simple DHCP Server mit Tkinter-GUI und Start-Skripten

This commit is contained in:
Marcel Peterkau
2025-09-11 09:58:51 +02:00
commit 992835bdc1
10 changed files with 292 additions and 0 deletions

8
start.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
if [ ! -d "venv" ]; then
python3 -m venv venv
fi
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
pgrep -f "python src/main.py" > /dev/null || python src/main.py