Files
2026-06-09 18:40:21 +02:00

3.8 KiB


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
GitHub taigaio/taiga
License MPL-2.0
Langage Python (Django) + JS (AngularJS)
Étoiles GitHub 5.0k
Catégorie [[cat-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)

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

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

Pages Liées