Initial commit — GeoOptions Intelligence Cockpit v2.0

Stack: FastAPI + React/TypeScript + SQLite + GPT-4o
Features: Radar géopolitique, Marchés, Régime Macro, Journal de Bord MTM,
Rapport IA, Super Contexte (base de raisonnement évolutive), Boucle feedback IA.
Deploy: Docker + docker-compose + nginx pour openfin.open-squared.tech

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
OpenSquared
2026-06-16 20:29:59 +02:00
commit d256b65d30
69 changed files with 18301 additions and 0 deletions

35
start_all.bat Normal file
View File

@@ -0,0 +1,35 @@
@echo off
title GeoOptions Intelligence - Launcher
echo.
echo ============================================
echo GeoOptions Intelligence Cockpit v2.0
echo ============================================
echo.
echo Liberation des ports...
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :8000 ^| findstr LISTENING') do (
taskkill /PID %%a /F >nul 2>&1
)
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :5173 ^| findstr LISTENING') do (
taskkill /PID %%a /F >nul 2>&1
)
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"
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"
timeout /t 5 /nobreak >nul
echo Ouverture du navigateur...
start http://localhost:5173
echo.
echo Cockpit disponible sur: http://localhost:5173
echo API disponible sur: http://localhost:8000/docs
echo.