feat: new cockpit

This commit is contained in:
OpenSquared
2026-07-14 11:21:43 +02:00
parent 9778c74ae3
commit ad07c8d886
32 changed files with 871 additions and 551 deletions

View File

@@ -1,8 +1,8 @@
@echo off
title GeoOptions Intelligence - Launcher
title OpenFin Intelligence - Launcher
echo.
echo ============================================
echo GeoOptions Intelligence Cockpit v2.0
echo OpenFin Intelligence Cockpit v2.0
echo ============================================
echo.
@@ -17,12 +17,12 @@ echo Ports 8000 et 5173 liberes.
echo.
echo Demarrage du backend (port 8000)...
start "GeoOptions Backend" cmd /k "cd /d %~dp0backend && (if not exist venv python -m venv venv) && call venv\Scripts\activate.bat && pip install -r requirements.txt -q && python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload"
start "OpenFin Backend" cmd /k "cd /d %~dp0backend && (if not exist venv python -m venv venv) && call venv\Scripts\activate.bat && pip install -r requirements.txt -q && python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload"
timeout /t 5 /nobreak >nul
echo Demarrage du frontend (port 5173)...
start "GeoOptions Frontend" cmd /k "cd /d %~dp0frontend && (if not exist node_modules npm install) && npm run dev"
start "OpenFin Frontend" cmd /k "cd /d %~dp0frontend && (if not exist node_modules npm install) && npm run dev"
timeout /t 5 /nobreak >nul