126 lines
3.8 KiB
Markdown
126 lines
3.8 KiB
Markdown
---
|
|
title: Taiga
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, project-management, agile, app-marathon-batch-b]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Project+Management&app=taiga, https://taiga.io/]
|
|
---
|
|
|
|
# 📊 Taiga
|
|
|
|
> **La référence agile open-source** : Scrum et Kanban pour équipes produit. Backlog, sprints, user stories, tasks, bugs, wiki, video conferencing intégrée.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [taiga.io](https://taiga.io/) |
|
|
| **GitHub** | [taigaio/taiga](https://github.com/taigaio/taiga) |
|
|
| **License** | MPL-2.0 |
|
|
| **Langage** | Python (Django) + JS (AngularJS) |
|
|
| **Étoiles GitHub** | 5.0k ⭐ |
|
|
| **Catégorie** | [[cat-project-management|Project Management]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Taiga** est l'**un des outils agiles open-source les plus matures** : Scrum complet (backlog, sprints, user stories, acceptance criteria, burndown), Kanban, wiki, intégrations GitHub/GitLab/Bitbucket (webhooks bidirectionnels), timesheet.
|
|
|
|
Différence vs Plane : Taiga = **mature, agile pur**, communauté de longue date. Plane = **UX moderne Linear-like** 2024+. Taiga reste excellent pour les équipes Scrum traditionnelles.
|
|
|
|
Pour qui : équipes dev/agile, startups produit, organisations qui veulent Jira mais sans la complexité enterprise.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (Taiga Stack officiel)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
taiga-back:
|
|
image: taigaio/taiga-back:latest
|
|
container_name: taiga-back
|
|
restart: unless-stopped
|
|
environment:
|
|
- SECRET_KEY=*** - DATABASE_URL=postgresql://taiga:***@taiga-db:5432/taiga
|
|
- RABBITMQ_URL=amqp://taiga:***@taiga-async:5672
|
|
- REDIS_URL=redis://taiga-async-redis:6379/0
|
|
- TAIGA_FRONT_BASE_URL=https://taiga.example.com
|
|
depends_on:
|
|
- taiga-db
|
|
- taiga-async
|
|
|
|
taiga-front:
|
|
image: taigaio/taiga-front:latest
|
|
container_name: taiga-front
|
|
restart: unless-stopped
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.taiga.rule=Host(`taiga.example.com`)"
|
|
- "traefik.http.routers.taiga.entrypoints=websecure"
|
|
- "traefik.http.routers.taiga.tls.certresolver=letsencrypt"
|
|
depends_on:
|
|
- taiga-back
|
|
|
|
taiga-async:
|
|
image: taigaio/taiga-async:latest
|
|
container_name: taiga-async
|
|
restart: unless-stopped
|
|
environment:
|
|
- RABBITMQ_URL=amqp://taiga:***@taiga-async-rabbit:5672
|
|
depends_on:
|
|
- taiga-async-rabbit
|
|
- taiga-async-redis
|
|
|
|
taiga-db:
|
|
image: postgres:13
|
|
container_name: taiga-db
|
|
environment:
|
|
- POSTGRES_DB=taiga
|
|
- POSTGRES_USER=taiga
|
|
- POSTGRES_PASSWORD=*** volumes:
|
|
- taiga_db:/var/lib/postgresql/data
|
|
|
|
taiga-async-rabbit:
|
|
image: rabbitmq:3-management
|
|
|
|
taiga-async-redis:
|
|
image: redis:7-alpine
|
|
|
|
volumes:
|
|
taiga_db:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-plane]] — Linear-like moderne
|
|
- [[app-leantime]] — Accessible neurodiversité
|
|
- [[app-openproject]] — PM enterprise
|
|
- [[app-focalboard]] — Kanban Notion
|
|
|
|
### Propriétaires
|
|
- **Jira** — Standard enterprise Atlassian
|
|
- **Linear** — UX premium
|
|
- **Scrumwise** — Scrum pur
|
|
- **Pivotal Tracker** — Lean agile
|
|
|
|
## 🔐 Sécurité
|
|
- **Auth** : Email/password, OAuth (Google, GitHub, GitLab, Slack, Bitbucket)
|
|
- **LDAP** : supporté (Taiga+)
|
|
- **RBAC** : rôles par projet (admin, PO, dev, viewer)
|
|
- **Webhooks sécurisés** : HMAC pour GitHub
|
|
- **HTTPS** : obligatoire en prod
|
|
|
|
## 📚 Ressources
|
|
- [Site officiel](https://taiga.io/)
|
|
- [GitHub](https://github.com/taigaio/taiga)
|
|
- [Documentation](https://docs.taiga.io/)
|
|
|
|
## Pages Liées
|
|
- [[cat-project-management]] — Catégorie Project Management
|
|
- [[app-plane]] — Concurrent moderne
|
|
- [[recettes-docker-compose]] — Templates Docker
|