Initial vault setup
This commit is contained in:
@@ -0,0 +1,112 @@
|
||||
---
|
||||
title: Automatisch
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, workflow-automation, app-marathon-batch-a]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=Workflow+Automation&app=automatisch]
|
||||
---
|
||||
|
||||
# ⚙️ Automatisch
|
||||
|
||||
> **Workflow automation open source** — alternative à Zapier/Make, créé par des devs Latinos, avec une approche communautaire forte.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [automatisch.io](https://automatisch.io) |
|
||||
| **GitHub** | [automatisch/automatisch](https://github.com/automatisch/automatisch) |
|
||||
| **License** | AGPL-3.0 |
|
||||
| **Langage** | JavaScript (Node.js / React) |
|
||||
| **Étoiles GitHub** | 5k ⭐ |
|
||||
| **Catégorie** | [[cat-workflow-automation|Workflow Automation]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**Automatisch** est une plateforme d'**automatisation de workflows** 100% open source (AGPL, plus permissive que n8n) qui veut devenir une alternative européenne de Zapier. Vous créez des flows visuels qui connectent des apps populaires (Google Sheets, Slack, Notion, Trello, GitHub, Stripe, etc.) et exécutez des automatisations sans limite. Différence avec **n8n** : Automatisch est plus jeune, plus orienté PME, et a une licence AGPL-3.0 (vs Sustainable Use License de n8n qui restreint la revente). Pour qui: entreprises européennes qui veulent un Zapier-like vraiment libre, sans les restrictions de revente de n8n.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
automatisch:
|
||||
image: automatisch/automatisch:latest
|
||||
container_name: automatisch
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3000:3000"
|
||||
environment:
|
||||
- APP_PORT=3000
|
||||
- APP_BASE_URL=https://flows.example.com
|
||||
- ENCRYPTION_KEY=***
|
||||
- POSTGRES_HOST=postgres
|
||||
- POSTGRES_PORT=5432
|
||||
- POSTGRES_DATABASE=automatisch
|
||||
- POSTGRES_USERNAME=automatisch
|
||||
- POSTGRES_PASSWORD=***
|
||||
- REDIS_HOST=redis
|
||||
- REDIS_PORT=6379
|
||||
depends_on:
|
||||
- postgres
|
||||
- redis
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.automatisch.rule=Host(`flows.example.com`)"
|
||||
- "traefik.http.routers.automatisch.entrypoints=websecure"
|
||||
- "traefik.http.routers.automatisch.tls.certresolver=letsencrypt"
|
||||
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
container_name: automatisch-db
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- POSTGRES_USER=automatisch
|
||||
- POSTGRES_PASSWORD=***
|
||||
- POSTGRES_DB=automatisch
|
||||
volumes:
|
||||
- automatisch-db:/var/lib/postgresql/data
|
||||
|
||||
redis:
|
||||
image: redis:7-alpine
|
||||
container_name: automatisch-redis
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
automatisch-db:
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-n8n]] — Concurrent plus mature
|
||||
- [[app-activepieces]] — Concurrent moderne TS
|
||||
- [[app-node-red]] — IoT
|
||||
- [[app-kestra]] — YAML déclaratif
|
||||
|
||||
### Propriétaires
|
||||
- **Zapier** — Leader marché
|
||||
- **Make** — UI visuelle
|
||||
- **Workato** — Enterprise
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **AGPL-3.0** : licence copyleft, pas de restrictions de revente.
|
||||
- **ENCRYPTION_KEY** : pour chiffrer les credentials en base.
|
||||
- **2FA** : activable pour les utilisateurs admin.
|
||||
- **HTTPS** : via Traefik.
|
||||
|
||||
## 📚 Ressources
|
||||
- [Documentation officielle](https://automatisch.io/docs)
|
||||
- [GitHub Automatisch](https://github.com/automatisch/automatisch)
|
||||
- [Community Forum](https://community.automatisch.io/)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-workflow-automation]] — Catégorie Workflow Automation
|
||||
- [[app-n8n]] — Concurrent principal
|
||||
- [[app-activepieces]] — Concurrent moderne
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
Reference in New Issue
Block a user