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

11
start.bat Normal file
View File

@@ -0,0 +1,11 @@
@echo off
if not exist venv (
python -m venv venv
)
call venv\Scripts\activate
pip install --upgrade pip
pip install -r requirements.txt
tasklist /FI "IMAGENAME eq python.exe" | find /I "main.py" >nul
if errorlevel 1 (
python src\main.py
)