103 lines
3.2 KiB
Markdown
103 lines
3.2 KiB
Markdown
---
|
|
title: Operately
|
|
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=operately, https://operately.com/]
|
|
---
|
|
|
|
# 📊 Operately
|
|
|
|
> **Plateforme de management opérationnel pour startups** : OKRs, projets, décisions, hiérarchie d'équipe, 1-on-1s — l'OS interne d'une entreprise en croissance.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [operately.com](https://operately.com/) |
|
|
| **GitHub** | [operately/operately](https://github.com/operately/operately) |
|
|
| **License** | AGPL-3.0 |
|
|
| **Langage** | Elixir (Phoenix) |
|
|
| **Étoiles GitHub** | 1.5k ⭐ |
|
|
| **Catégorie** | [[cat-project-management|Project Management]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Operately** (par l'équipe d'Ex Memrise) se positionne comme un **"operational OS"** pour les startups série A-B : OKRs, projets avec milestones, arbre de décisions (Decision Tree), structure d'équipe, check-ins, 1-on-1s. Approche integrated plutôt que de multiplier les outils.
|
|
|
|
Différence vs Leantime : Leantime = task tracking accessible. Operately = **management operating system**, avec une vue "entreprise" (people, decisions, strategy) au-delà du projet.
|
|
|
|
Pour qui : CTO/CEO de startups 10-50 personnes qui veulent aligner OKRs + projets + décisions dans un seul outil.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
operately:
|
|
image: operately/operately:latest
|
|
container_name: operately
|
|
restart: unless-stopped
|
|
environment:
|
|
- SECRET_KEY_BASE=*** - DATABASE_URL=postgresql://operately:***@db:5432/operately
|
|
- PHX_HOST=ops.example.com
|
|
volumes:
|
|
- operately_data:/app/data
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.operately.rule=Host(`ops.example.com`)"
|
|
- "traefik.http.routers.operately.entrypoints=websecure"
|
|
- "traefik.http.routers.operately.tls.certresolver=letsencrypt"
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: postgres:16-alpine
|
|
container_name: operately-db
|
|
environment:
|
|
- POSTGRES_USER=operately
|
|
- POSTGRES_PASSWORD=*** - POSTGRES_DB=operately
|
|
volumes:
|
|
- operately_db:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
operately_data:
|
|
operately_db:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-leantime]] — PM accessible
|
|
- [[app-taiga]] — Scrum agile
|
|
- **Twenty** — CRM open-source (équipe)
|
|
- **Huly** — Platform all-in-one
|
|
|
|
### Propriétaires
|
|
- **Lattice** — People + OKRs
|
|
- **15Five** — Performance + OKRs
|
|
- **ClickUp** — Tout-en-un
|
|
- **Notion** — Workspace flexible
|
|
|
|
## 🔐 Sécurité
|
|
- **Auth** : email/password + OAuth
|
|
- **RBAC** : rôles par espace de travail
|
|
- **2FA** : recommandé, TOTP
|
|
- **Audit log** : traçabilité des décisions
|
|
- **Sessions** : cookies sécurisés
|
|
|
|
## 📚 Ressources
|
|
- [Site officiel](https://operately.com/)
|
|
- [GitHub](https://github.com/operately/operately)
|
|
- [Démo](https://demo.operately.com)
|
|
|
|
## Pages Liées
|
|
- [[cat-project-management]] — Catégorie Project Management
|
|
- [[app-leantime]] — Concurrent PM
|
|
- [[recettes-docker-compose]] — Templates Docker
|