2.9 KiB
2.9 KiB
title: Worklenz created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, project-management, app-marathon-batch-b] confidence: medium contested: false sources: [https://selfh.st/apps/?tag=Project+Management&app=worklenz, https://worklenz.com/]
📊 Worklenz
Project management orienté agence et équipes : tâches, time tracking, reporting, vues Kanban/List/Calendar, clients, facturation basique.
📋 Informations Générales
| Champ | Valeur |
|---|---|
| Site web | worklenz.com |
| GitHub | worklenz/worklenz |
| License | AGPL-3.0 |
| Langage | TypeScript (Node + React) |
| Étoiles GitHub | 0.7k ⭐ |
| Catégorie | [[cat-project-management |
📝 Description
Worklenz est un PM orienté agences et équipes : gestion de projets clients, time tracking par tâche, rapports d'effort, vues multiples (Kanban, List, Gantt-like, Calendar), facturation simple, portail client optionnel.
Différence vs Taiga : Taiga = agile dev. Worklenz = PM agence/client avec time tracking central.
Pour qui : agences créa/tech, SSII, freelances en équipe, toute organisation qui facture au temps passé.
🚀 Installation
Docker Compose (esquisse)
version: '3.8'
services:
worklenz:
image: worklenz/worklenz:latest
container_name: worklenz
restart: unless-stopped
environment:
- DATABASE_URL=postgresql://worklenz:***@db:5432/worklenz
- JWT_SECRET=*** - APP_URL=https://pm.example.com
labels:
- "traefik.enable=true"
- "traefik.http.routers.worklenz.rule=Host(`pm.example.com`)"
- "traefik.http.routers.worklenz.entrypoints=websecure"
- "traefik.http.routers.worklenz.tls.certresolver=letsencrypt"
depends_on:
- db
db:
image: postgres:16-alpine
environment:
- POSTGRES_USER=worklenz
- POSTGRES_PASSWORD=*** - POSTGRES_DB=worklenz
volumes:
- worklenz_db:/var/lib/postgresql/data
volumes:
worklenz_db:
🔄 Alternatives
Open Source
- app-leantime — PM accessible
- app-taiga — Agile dev
- app-openproject — PM enterprise
- Everhour-like — Time tracking
Propriétaires
- Harvest Forecast — Time + planning
- ClickTime — Time tracking
- Paymo — PM + time + invoicing
- Toggl Track — Time tracking
🔐 Sécurité
- Auth : Email/password + OAuth (Google)
- JWT : tokens stateless
- RBAC : par organisation, par projet
- HTTPS : obligatoire
- Logs : audit des actions admin
📚 Ressources
Pages Liées
- cat-project-management — Catégorie Project Management
- app-leantime — Concurrent
- recettes-docker-compose — Templates Docker