30 lines
610 B
Batchfile
30 lines
610 B
Batchfile
@echo off
|
|
title OpenFin - Frontend React
|
|
cd /d "%~dp0frontend"
|
|
|
|
echo ============================================
|
|
echo OpenFin 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
|