mirror of
https://github.com/yuruotong1/autoMate.git
synced 2026-03-22 04:57:18 +08:00
20 lines
645 B
Batchfile
20 lines
645 B
Batchfile
cd app
|
|
|
|
set "target_dir=.\dist"
|
|
del /f /q "%target_dir%\*.*"
|
|
for /d %%i in ("%target_dir%\*") do rmdir /s /q "%%i"
|
|
|
|
call npm run build:win
|
|
move .\dist\win-unpacked\resources\app.asar.unpacked\resources\icon.png .\dist\win-unpacked\resources
|
|
cd ..
|
|
cd server
|
|
call .\.venv\Scripts\activate
|
|
pip install -r requirements.txt
|
|
call echo y | pyinstaller main.spec
|
|
xcopy .\.venv\Lib\site-packages\litellm\*.json .\dist\autoMateServer\_internal\litellm\ /E /H /F /I /Y
|
|
|
|
xcopy .\dist\autoMateServer\* ..\app\dist\win-unpacked\ /E /H /F /I /Y
|
|
cd ..\app\dist
|
|
REN win-unpacked autoMate
|
|
powershell Compress-Archive -Path autoMate -DestinationPath autoMate.zip
|