VERIDEX.V1 / build_exe.bat
shadow55gh
fix: remove node_modules and cache from tracking
81f9dfe
raw
history blame contribute delete
602 Bytes
@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