Clean project: remove test files, debug logs, and add documentation

This commit is contained in:
dahoud
2025-10-05 13:41:33 +00:00
parent 96a17eadbd
commit 291847924c
438 changed files with 65754 additions and 32713 deletions

View File

@@ -5,7 +5,7 @@ echo ===========================================================================
REM Obtenir un nouveau token
echo [INFO] Obtention du token...
curl -s -X POST "http://192.168.1.145:8180/realms/master/protocol/openid-connect/token" -H "Content-Type: application/x-www-form-urlencoded" -d "username=admin&password=admin&grant_type=password&client_id=admin-cli" > token.json
curl -s -X POST "http://192.168.1.11:8180/realms/master/protocol/openid-connect/token" -H "Content-Type: application/x-www-form-urlencoded" -d "username=admin&password=admin&grant_type=password&client_id=admin-cli" > token.json
REM Extraire le token
for /f "tokens=2 delims=:," %%a in ('findstr "access_token" token.json') do set TOKEN_RAW=%%a
@@ -26,14 +26,14 @@ echo {"name":"VISITEUR","description":"Visiteur","attributes":{"level":["0"]}} >
REM Créer tous les rôles
echo [INFO] Création des rôles...
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_super.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_admin.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_tech.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_finance.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_membres.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_actif.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_simple.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_visiteur.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_super.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_admin.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_tech.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_finance.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_membres.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_actif.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_simple.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/roles" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @role_visiteur.json
echo [SUCCESS] Rôles créés
echo.
@@ -50,14 +50,14 @@ echo {"username":"visiteur","email":"visiteur@example.com","firstName":"Visiteur
REM Créer tous les utilisateurs
echo [INFO] Création des utilisateurs...
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_super.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_admin.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_tech.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_finance.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_membres.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_actif.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_simple.json
curl -s -X POST "http://192.168.1.145:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_visiteur.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_super.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_admin.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_tech.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_finance.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_membres.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_actif.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_simple.json
curl -s -X POST "http://192.168.1.11:8180/admin/realms/unionflow/users" -H "Authorization: Bearer %TOKEN%" -H "Content-Type: application/json" -d @user_visiteur.json
echo [SUCCESS] Utilisateurs créés
echo.