Authentification stable - WIP

This commit is contained in:
DahoudG
2025-09-19 12:35:46 +00:00
parent 63fe107f98
commit 098894bdc1
383 changed files with 13072 additions and 93334 deletions

28
launch-server.bat Normal file
View File

@@ -0,0 +1,28 @@
@echo off
echo ========================================
echo LANCEMENT SERVEUR UNIONFLOW
echo ========================================
echo.
cd unionflow-server-impl-quarkus
echo Compilation du serveur...
mvn clean compile -DskipTests
if %ERRORLEVEL% NEQ 0 (
echo.
echo ERREUR: La compilation a echoue !
echo Verifiez les erreurs ci-dessus.
pause
exit /b 1
)
echo.
echo Lancement du serveur Quarkus...
echo Le serveur sera accessible sur http://192.168.1.11:8080
echo Swagger UI : http://192.168.1.11:8080/swagger-ui
echo.
mvn quarkus:dev -Dquarkus.http.host=0.0.0.0
pause