File size: 303 Bytes
454f1d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | @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
|