message / start_server.bat
hunian
docs(core): 更新README和前端资源,完善插件系统和用户反馈功能
454f1d5
Raw
History Blame Contribute Delete
303 Bytes
@echo off
echo Starting Document Merge Split Plugin Server...
echo.
echo Clearing caches...
del /s /q *.pyc 2>nul
for /d /r . %%d in (__pycache__) do @if exist "%%d" rd /s /q "%%d" 2>nul
echo Cache cleared.
echo.
echo Starting server...
uvicorn app.main:app --reload --host 0.0.0.0 --port 7860
pause