Spaces:
Sleeping
Sleeping
| @echo off | |
| echo ======================================== | |
| echo VERIDEX - Build .exe | |
| echo ======================================== | |
| echo. | |
| echo Installing PyInstaller... | |
| pip install pyinstaller | |
| echo. | |
| echo Building VERIDEX.exe... | |
| pyinstaller --onefile --windowed --name "VERIDEX" launcher.py | |
| echo. | |
| echo ======================================== | |
| echo Copying backend + frontend to dist/ | |
| echo ======================================== | |
| xcopy /E /I backend dist\backend | |
| xcopy /E /I frontend dist\frontend | |
| echo. | |
| echo ✅ DONE! dist\VERIDEX.exe ready! | |
| echo Share the entire dist\ folder as a ZIP. | |
| echo. | |
| pause | |