MetaGuard / apps /start_all.bat
3v324v23's picture
Phase 2 complete: Fixed inference loop and added phase gates
8a685c0
raw
history blame contribute delete
421 Bytes
@echo off
echo Launching Enterprise Ecosystem...
:: This line forces Windows to go to the project root before running anything
cd /d "%~dp0\.."
start "Regulatory API" cmd /k "uv run python apps\regulatory_api.py"
start "CRM API" cmd /k "uv run python apps\crm_api.py"
start "Audit API" cmd /k "uv run python apps\audit_api.py"
start "Environment Server" cmd /k "uv run uvicorn server.app:app --host 0.0.0.0 --port 8000"