--- title: Leantime created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, project-management, app-marathon-batch-b] confidence: high contested: false sources: [https://selfh.st/apps/?tag=Project+Management&app=leantime, https://leantime.io/] --- # 📊 Leantime > **Project management pour les profils neuroatypiques** : interface pensĂ©e pour TDAH, autisme, dyslexie. Kanban, Gantt, timesheets, todo, goals — simple et accessible. ## 📋 Informations GĂ©nĂ©rales | Champ | Valeur | | :--- | :--- | | **Site web** | [leantime.io](https://leantime.io/) | | **GitHub** | [Leantimeio/leantime](https://github.com/Leantimeio/leantime) | | **License** | GPL-2.0 | | **Langage** | PHP (Laravel) | | **Étoiles GitHub** | 4.8k ⭐ | | **CatĂ©gorie** | [[cat-project-management|Project Management]] | ## 📝 Description **Leantime** est un outil de project management **conçu pour les personnes neurodivergentes** (TDAH, autisme, dyslexie) : typographie lisible, faible charge cognitive, interface calme, peu de notifications. Il offre Kanban, Gantt, timesheets, todo, milestones, ideas board. DiffĂ©rence vs Taiga : Taiga = orientĂ© dev/scrum pur. Leantime = **PM gĂ©nĂ©raliste accessible**, avec zoom santĂ© mentale/accessibilitĂ©. Pour qui : Ă©quipes mixtes, freelances, organisations non-techniques, personnes cherchant un PM moins overwhelming que Jira. ## 🚀 Installation ### Docker Compose ```yaml version: '3.8' services: leantime: image: leantime/leantime:latest container_name: leantime restart: unless-stopped environment: - LEAN_DB_HOST=db - LEAN_DB_USER=leantime - LEAN_DB_PASSWORD=*** - LEAN_DB_DATABASE=leantime - LEAN_APP_URL=https://pm.example.com - LEAN_SESSION_PASSWORD=*** volumes: - leantime_data:/var/www/html/userfiles labels: - "traefik.enable=true" - "traefik.http.routers.leantime.rule=Host(`pm.example.com`)" - "traefik.http.routers.leantime.entrypoints=websecure" - "traefik.http.routers.leantime.tls.certresolver=letsencrypt" depends_on: - db db: image: mysql:8.0 container_name: leantime-db environment: - MYSQL_ROOT_PASSWORD=*** - MYSQL_DATABASE=leantime - MYSQL_USER=leantime - MYSQL_PASSWORD=*** volumes: - leantime_db:/var/lib/mysql volumes: leantime_data: leantime_db: ``` ## 🔄 Alternatives ### Open Source - [[app-taiga]] — Scrum agile pur - [[app-plane]] — Modern PM (Linear-like) - [[app-openproject]] — PM enterprise - [[app-focalboard]] — Kanban Notion-like ### PropriĂ©taires - **Jira** — Standard enterprise - **Linear** — UX premium, dev-first - **Asana** — PM gĂ©nĂ©raliste ## 🔐 SĂ©curitĂ© - **Auth** : email/password, 2FA, LDAP, OAuth (Google, GitHub) - **RBAC** : rĂŽles par projet, granulaires - **CSRF** : protection Laravel native - **Logs** : audit trail des actions - **2FA TOTP** : activable par user ## 📚 Ressources - [Site officiel](https://leantime.io/) - [GitHub](https://github.com/Leantimeio/leantime) - [Documentation](https://docs.leantime.io/) ## Pages LiĂ©es - [[cat-project-management]] — CatĂ©gorie Project Management - [[app-taiga]] — Concurrent agile - [[recettes-docker-compose]] — Templates Docker