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
This commit is contained in:
lionsdev
2025-12-05 16:23:57 +00:00
parent b3ef7192ad
commit 4cd23c03ad
13 changed files with 1502 additions and 0 deletions

38
start-client.bat Normal file
View File

@@ -0,0 +1,38 @@
@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