.env.example 611 B

123456789101112131415161718
  1. PGHOST=localhost
  2. PGPORT=5432
  3. PGUSER=postgres
  4. PGPASSWORD=postgres
  5. PGDATABASE=gestion_locative
  6. JWT_SECRET=change_this_secret_in_production
  7. # URL du backend vue par le conteneur frontend (nginx reverse proxy)
  8. BACKEND_URL=http://backend:3001
  9. # SSO OIDC (optionnel — laisser vide pour désactiver le bouton SSO)
  10. OIDC_ISSUER=https://your-provider.example.com/realms/myrealm
  11. OIDC_CLIENT_ID=gestion-locative
  12. OIDC_CLIENT_SECRET=your-client-secret
  13. OIDC_REDIRECT_URI=http://localhost:3001/api/auth/oidc/callback
  14. OIDC_SCOPE=openid email profile
  15. OIDC_BUTTON_LABEL=Se connecter via SSO
  16. FRONTEND_URL=http://localhost:3000