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:
29
start_frontend.bat
Normal file
29
start_frontend.bat
Normal file
@@ -0,0 +1,29 @@
|
||||
@echo off
|
||||
title GeoOptions - Frontend React
|
||||
cd /d "%~dp0frontend"
|
||||
|
||||
echo ============================================
|
||||
echo GeoOptions Intelligence - Frontend React
|
||||
echo ============================================
|
||||
echo.
|
||||
|
||||
:: Check Node
|
||||
node --version >nul 2>&1
|
||||
if errorlevel 1 (
|
||||
echo ERREUR: Node.js n'est pas installe ou pas dans le PATH
|
||||
echo Telecharger depuis: https://nodejs.org/
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
:: Install deps if needed
|
||||
if not exist "node_modules" (
|
||||
echo Installation des dependances npm...
|
||||
npm install
|
||||
)
|
||||
|
||||
echo.
|
||||
echo Frontend demarre sur http://localhost:5173
|
||||
echo.
|
||||
npm run dev
|
||||
pause
|
||||
Reference in New Issue
Block a user