19 lines
491 B
Batchfile
19 lines
491 B
Batchfile
@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
|