104 lines
3.2 KiB
Markdown
104 lines
3.2 KiB
Markdown
---
|
|
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
|