← Tous les guides
Taiga
Taiga is an agile project management tool built around Scrum and Kanban boards, officially packaged as taiga-docker for self-hosted deployment.
Ce guide est élaboré à partir de la documentation officielle de Taiga, dont le lien figure ci-dessus — vérifiez toujours les noms exacts des paquets/versions avant d'exécuter ces commandes sur un serveur de production, car les versions de la distribution et du projet évoluent avec le temps.
1Clone taiga-docker and check out the stable branch
git clone https://github.com/taigaio/taiga-docker.gitcd taiga-dockergit checkout stableTaiga's docs specify the stable branch for production and main for development.
2Configure environment variables
Edit the .env file to set your domain, scheme (http/https), database credentials, a unique secret key, and email/SMTP settings.
3Launch Taiga
./launch-taiga.shdocker compose up -d4Create an admin user
./taiga-manage.sh createsuperuser5Access Taiga
For local testing, open http://localhost:9000. For a real server, configure the bundled nginx service and your domain/HTTPS settings in .env first.