Initial certificate system

This commit is contained in:
nelso
2026-06-06 19:32:24 +08:00
commit ce4ed6213b
105 changed files with 9133 additions and 0 deletions

8
reset-local-data.bat Normal file
View File

@@ -0,0 +1,8 @@
@echo off
setlocal
cd /d "%~dp0"
if exist "local_app\data\local.db" del /f /q "local_app\data\local.db"
if exist "local_app\data\batch-*.json" del /f /q "local_app\data\batch-*.json"
if exist "local_app\data\pdf-cache" rmdir /s /q "local_app\data\pdf-cache"
echo Local test data has been reset.
pause