116 lines
4.2 KiB
Markdown
116 lines
4.2 KiB
Markdown
---
|
|
title: Activepieces
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, workflow-automation, app-marathon-batch-rattrapage-1]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Workflow+Automation&app=activepieces]
|
|
---
|
|
|
|
# ⚙️ Activepieces
|
|
|
|
> **Workflow automation moderne en TypeScript** — alternative jeune à n8n, ultra-rapide, avec focus sur l'IA (OpenAI, Claude, Ollama) et une marketplace communautaire de « pieces ».
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [activepieces.com](https://activepieces.com) |
|
|
| **GitHub** | [activepieces/activepieces](https://github.com/activepieces/activepieces) |
|
|
| **License** | MIT (Community Edition) |
|
|
| **Langage** | TypeScript / NestJS |
|
|
| **Étoiles GitHub** | 14k ⭐ |
|
|
| **Catégorie** | [[cat-workflow-automation\|Workflow Automation]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Activepieces** est une plateforme d'**automatisation de workflows** open source (MIT) écrite en TypeScript/NestJS, conçue comme une alternative moderne à n8n. Elle se distingue par une UI fluide, un système d'extensibilité simple (les « pieces » sont des modules TS isolés), un **focus natif sur l'IA** (intégrations OpenAI, Claude, Mistral, Ollama) et une **marketplace communautaire** de pieces partagées. Différence vs **n8n** : Activepieces est plus jeune (lancé en 2022), compte ~200 pieces natives (vs 400+ pour n8n), mais est plus rapide, plus moderne côté stack, et reste 100 % MIT. Pour qui: équipes qui démarrent un projet d'automation et veulent une solution « AI-first » et légère, sans les restrictions de la licence Sustainable Use de n8n.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
activepieces:
|
|
image: ghcr.io/activepieces/activepieces:latest
|
|
container_name: activepieces
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:80"
|
|
environment:
|
|
- AP_FRONTEND_URL=https://flows.example.com
|
|
- AP_API_KEY=***
|
|
- AP_JWT_SECRET=***
|
|
- AP_POSTGRES_HOST=postgres
|
|
- AP_POSTGRES_PORT=5432
|
|
- AP_POSTGRES_USERNAME=activepieces
|
|
- AP_POSTGRES_PASSWORD=***
|
|
- AP_POSTGRES_DATABASE=activepieces
|
|
- AP_REDIS_HOST=redis
|
|
- AP_REDIS_PORT=6379
|
|
volumes:
|
|
- activepieces-data:/app/data
|
|
depends_on:
|
|
- postgres
|
|
- redis
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.activepieces.rule=Host(`flows.example.com`)"
|
|
- "traefik.http.routers.activepieces.entrypoints=websecure"
|
|
- "traefik.http.routers.activepieces.tls.certresolver=letsencrypt"
|
|
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
container_name: activepieces-db
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_USER=activepieces
|
|
- POSTGRES_PASSWORD=***
|
|
- POSTGRES_DB=activepieces
|
|
volumes:
|
|
- activepieces-db:/var/lib/postgresql/data
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
container_name: activepieces-redis
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
activepieces-data:
|
|
activepieces-db:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-n8n]] — Concurrent principal, plus mature, 400+ intégrations
|
|
- [[app-node-red]] — Orienté IoT, flow-based bas niveau
|
|
- [[app-kestra]] — YAML déclaratif, orienté data engineering
|
|
- [[app-automatisch]] — Alternative AGPL, plus PME
|
|
|
|
### Propriétaires
|
|
- **Zapier** — Leader du marché, +6000 apps
|
|
- **Make (ex-Integromat)** — UI visuelle, scénarios complexes
|
|
- **Workato** — Enterprise, orienté grandes organisations
|
|
|
|
## 🔐 Sécurité
|
|
- **JWT auth** : tokens pour API et UI, secret configurable via `AP_JWT_SECRET`.
|
|
- **Credentials chiffrés** : AES-256 en base PostgreSQL, clé via `AP_ENCRYPTION_KEY`.
|
|
- **OAuth SSO** : Google, Microsoft, GitHub pour l'authentification.
|
|
- **HTTPS** : obligatoire en production, Traefik + Let's Encrypt recommandé.
|
|
|
|
## 📚 Ressources
|
|
- [Documentation officielle](https://www.activepieces.com/docs)
|
|
- [Pieces marketplace](https://www.activepieces.com/pieces)
|
|
- [GitHub Activepieces](https://github.com/activepieces/activepieces)
|
|
|
|
## Pages Liées
|
|
- [[cat-workflow-automation]] — Catégorie Workflow Automation
|
|
- [[app-n8n]] — Concurrent principal
|
|
- [[app-automatisch]] — Concurrent open source AGPL
|
|
- [[recettes-docker-compose]] — Templates Docker
|