add launch scripts for windows

This commit is contained in:
2025-01-23 19:29:49 +01:00
parent 708cd39f8e
commit 056546a920
2 changed files with 31 additions and 0 deletions

16
launch.cmd Normal file
View File

@@ -0,0 +1,16 @@
@echo off
REM Activate Python virtual environment
cd .
call .venv\Scripts\activate.bat
REM Perform a git pull to sync the repository
git pull
REM Run uv sync (replace 'uv sync' with the actual command if different)
uv sync
REM Start the Python script
python main.py
REM Deactivate the virtual environment
deactivate