Initial vault setup
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
---
|
||||
title: MintHCM
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, human-resources, app-marathon3-batch-c]
|
||||
confidence: high
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=human-resources&app=minthcm]
|
||||
---
|
||||
|
||||
# 👥 MintHCM
|
||||
|
||||
> Le SIRH (Système d'Information RH) open source complet : recrutement, GPEC, paie, formation, performance.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [minthcm.com](https://minthcm.com) |
|
||||
| **GitHub** | [minthcm/minthcm](https://github.com/minthcm/minthcm) |
|
||||
| **License** | AGPL-3.0 |
|
||||
| **Langage** | PHP (SuiteCRM fork) |
|
||||
| **Étoiles GitHub** | 400 ⭐ |
|
||||
| **Catégorie** | [[cat-human-resources|Human Resources]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**MintHCM** est une suite RH (HRMS/HCM) open source de niveau entreprise, fork moderne de SuiteCRM focalisé sur les processus RH. Modules : Employees, Recruitment (ATS), Leaves/TimeOff, Training, Performance, Appraisals, Job/Promotion history, Skill matrix, Onboarding. **Différence vs OrangeHRM / Frappe HR** : basé sur SuiteCRM (puissance relationnelle + workflow), PHP/MVC éprouvé, plus focalisé PME/mid-market, modules paie décentralisés. **Pour qui** : DRH de PME 50-500 personnes, ESN, cabinets de conseil, organisations multi-sites ayant besoin d'un SIRH souverain.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
minthcm-web:
|
||||
image: minthcm/minthcm:1.2.0
|
||||
container_name: minthcm
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- minthcm-db
|
||||
environment:
|
||||
DB_HOST: minthcm-db
|
||||
DB_NAME: minthcm
|
||||
DB_USER: minthcm
|
||||
DB_PASSWORD: ${MINTHCM_DB_PASSWORD}
|
||||
SITE_URL: "https://hr.example.com"
|
||||
ADMIN_USER: admin
|
||||
ADMIN_PASSWORD: ${MINTHCM_ADMIN_PASSWORD}
|
||||
volumes:
|
||||
- minthcm-data:/var/www/html
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.minthcm.rule=Host(`hr.example.com`)"
|
||||
- "traefik.http.routers.minthcm.tls.certresolver=letsencrypt"
|
||||
|
||||
minthcm-db:
|
||||
image: mariadb:11
|
||||
container_name: minthcm-db
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
MARIADB_DATABASE: minthcm
|
||||
MARIADB_USER: minthcm
|
||||
MARIADB_PASSWORD: ${MINTHCM_DB_PASSWORD}
|
||||
MARIADB_RANDOM_ROOT_PASSWORD: "yes"
|
||||
volumes:
|
||||
- minthcm-db:/var/lib/mysql
|
||||
|
||||
volumes:
|
||||
minthcm-data:
|
||||
minthcm-db:
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- **OrangeHRM** — SIRH open source de référence, PHP, module paie payant
|
||||
- **Frappe HR** — module HR de Frappe/ERPNext, Python/JS
|
||||
- **Dolibarr** — ERP/CRM avec module HR léger (petites structures)
|
||||
- **Zammad HR** — focus helpdesk
|
||||
- **WaypointHR** — SIRH brésilien
|
||||
- **IceHrm** — version simple/light de HRM
|
||||
|
||||
### Propriétaires
|
||||
- **Workday** — SIRH cloud leader
|
||||
- **BambooHR** — SIRH PME US
|
||||
- **Sage Paie & RH** — éditeur français, paie certifiée
|
||||
- **Silae** — leader paie France
|
||||
- **Lucca** — suite SIRH française (URSSAF, congés)
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **2FA natif** : TOTP (Google Authenticator)
|
||||
- **Rôles/Groupes** : contrôle d'accès fin (par module/équipe/employé)
|
||||
- **Logs audit** : traçabilité de toutes les opérations RH (RGPD-compliant)
|
||||
- **HTTPS obligatoire** : via Traefik reverse proxy
|
||||
- **Backups** : dumps MariaDB + uploads critiques (CVs, contrats)
|
||||
- **Données personnelles** : chiffrement at rest conseillé, conformité RGPD
|
||||
|
||||
## 📚 Ressources
|
||||
- [Documentation](https://minthcm.com/documentation/)
|
||||
- [Démo en ligne](https://minthcm.com/demo)
|
||||
- [Forums](https://github.com/minthcm/minthcm/discussions)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-human-resources]] — Catégorie Human Resources
|
||||
- [[app-monica]] — Relations personnelles (autre public)
|
||||
- [[app-pocketbase]] — Backend léger
|
||||
Reference in New Issue
Block a user