mirror of
https://github.com/yuruotong1/autoMate.git
synced 2025-12-26 05:16:21 +08:00
11 lines
352 B
Batchfile
11 lines
352 B
Batchfile
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
|
|
|
|
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 |