This repository has been archived on 2026-01-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lions-user-manager/start-client.bat
lionsdev 4cd23c03ad docs: Ajout documentation et scripts de démarrage
- Documentation configuration OIDC, démarrage, diagnostic
- Scripts batch pour démarrage backend et client
- Script shell pour configuration Keycloak frontend
2025-12-05 16:23:57 +00:00

39 lines
973 B
Batchfile

@echo off
echo ========================================
echo DEMARRAGE DU CLIENT LIONS USER MANAGER
echo ========================================
echo.
cd lions-user-manager-client-quarkus-primefaces-freya
echo [1/3] Compilation du projet...
call mvn clean compile -q
if %ERRORLEVEL% NEQ 0 (
echo ERREUR: La compilation a echoue
pause
exit /b 1
)
echo [2/3] Verification du backend...
curl -s http://localhost:8081/health >nul 2>&1
if %ERRORLEVEL% NEQ 0 (
echo ATTENTION: Le backend ne semble pas etre accessible sur http://localhost:8081
echo Veuillez demarrer le backend avant de continuer (start-backend.bat)
echo.
pause
)
echo [3/3] Demarrage de l'application Quarkus...
echo.
echo Le client web va demarrer sur http://localhost:8080
echo Application: http://localhost:8080
echo Dashboard: http://localhost:8080/pages/user-manager/dashboard.xhtml
echo.
echo Appuyez sur Ctrl+C pour arreter le serveur
echo.
call mvn quarkus:dev
pause