Ajouter completion des profils nouveaux arrivants et corrections diverses
- Détection des profils incomplets (société/campus/service/date d'entrée/validateur) avec alerte Dashboard et section dédiée dans Équipe - Formulaire d'édition des collaborateurs (date d'entrée, rôle, validateur N+1, société, campus, service, type de contrat) avec combobox de recherche pour le validateur - Correction du mapping poste (colonne description au lieu de fonction) et du filtre des validateurs (variantes de rôle: Validateur/Validatrice, Directeur/Directrice, President) - Fix du proxy Vite vers le backend Docker Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
+30
-31
@@ -1,46 +1,45 @@
|
||||
version: '3.8' # ← AJOUTÉ (manquant !)
|
||||
services:
|
||||
networks:
|
||||
gtarh:
|
||||
external: false
|
||||
|
||||
services:
|
||||
backend:
|
||||
build:
|
||||
build:
|
||||
context: ./Backend
|
||||
dockerfile: DockerFileGTARH.backend
|
||||
image: ouijdaneim/gtarh-backend:latest
|
||||
container_name: gtarh-backend
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- DB_SERVER=192.168.0.3
|
||||
- DB_DATABASE=gta
|
||||
- DB_USER=gta_app
|
||||
- DB_PASSWORD=GTA2025!Secure
|
||||
- DB_ENCRYPT=true
|
||||
- DB_TRUST_SERVER_CERTIFICATE=true
|
||||
- PORT=3000
|
||||
- NODE_ENV=production
|
||||
restart: always
|
||||
networks:
|
||||
- gtarh
|
||||
ports:
|
||||
- "8013:3000"
|
||||
env_file:
|
||||
- ./Backend/.env
|
||||
environment:
|
||||
- DB_HOST=192.168.0.3
|
||||
- NODE_ENV=production
|
||||
- PORT=3000
|
||||
- COLLABORATEURS_URL=http://gtarh-backend:3000
|
||||
- RH_URL=http://gtarh-backend:3000
|
||||
- WEBHOOK_SECRET=secret-rh-2025
|
||||
networks:
|
||||
- gtarh-network
|
||||
restart: unless-stopped
|
||||
|
||||
|
||||
frontend:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./src/DockerFileGTARH.Frontend
|
||||
args:
|
||||
- VITE_API_URL=https://mygta-rh.ensup-adm.net:8013
|
||||
- VITE_API_URL=https://mygta-rh.ensup-adm.net
|
||||
image: ouijdaneim/gtarh-frontend:latest
|
||||
container_name: gtarh-frontend
|
||||
environment:
|
||||
- NODE_ENV=development
|
||||
restart: always
|
||||
networks:
|
||||
- gtarh
|
||||
ports:
|
||||
- "3014:3014"
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
depends_on:
|
||||
- backend
|
||||
networks:
|
||||
- gtarh-network
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
gtarh-network:
|
||||
driver: bridge
|
||||
|
||||
volumes:
|
||||
mysql-data:
|
||||
driver: local
|
||||
- backend
|
||||
Reference in New Issue
Block a user