| @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 | |