File size: 241 Bytes
454f1d5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
@echo off
echo Clearing all Python caches...
del /s /q *.pyc
for /d /r . %%d in (__pycache__) do @if exist "%%d" rd /s /q "%%d"
del /s /q app\__pycache__
del /s /q logs\*.log 2>nul

echo Caches cleared.
echo Please restart the server.
pause