Dieser Commit ist enthalten in:
Claude Project Manager
2025-07-07 22:11:38 +02:00
Commit ec92da8a64
73 geänderte Dateien mit 16367 neuen und 0 gelöschten Zeilen

32
start.bat Normale Datei
Datei anzeigen

@ -0,0 +1,32 @@
@echo off
title Claude Project Manager
echo Starting Claude Project Manager...
echo.
:: Check if Python is installed
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python is not installed or not in PATH
echo Please install Python 3.8 or higher
pause
exit /b 1
)
:: Check if requirements are installed
python -c "import customtkinter" >nul 2>&1
if errorlevel 1 (
echo Installing required packages...
pip install -r requirements.txt
echo.
)
:: Start the application
echo Launching application...
python main.py
:: If app crashes, keep window open
if errorlevel 1 (
echo.
echo Application crashed!
pause
)