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

18
start-local.bat Normal file
View File

@@ -0,0 +1,18 @@
@echo off
setlocal
cd /d "%~dp0"
set "PYTHON_EXE=C:\Users\nelso\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\python.exe"
if not exist "%PYTHON_EXE%" set "PYTHON_EXE=python"
echo Starting local certificate system...
echo.
echo Admin URL: http://127.0.0.1:8000/admin/login
echo Query URL: http://127.0.0.1:8000/query
echo Account: admin / Admin123!
echo.
echo Keep this window open while testing. Press Ctrl+C to stop.
echo.
"%PYTHON_EXE%" local_app\server.py
pause