build.bat 346 B

12345678910111213
  1. @echo off
  2. echo Building repo_sync GUI executable...
  3. REM Install required packages
  4. pip install pyinstaller
  5. pip install -e .
  6. REM Build the executable
  7. pyinstaller --onefile --windowed --name "RepoSync" --icon=icon.ico --add-data "repo_sync/config.yml;repo_sync" main_gui.py
  8. echo.
  9. echo Build completed! The executable is in the dist folder.
  10. echo.