--- 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