Initial vault setup
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
---
|
||||
title: Flow-Like
|
||||
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=flow-like]
|
||||
---
|
||||
|
||||
# ⚙️ Flow-Like
|
||||
|
||||
> **Workflow automation visuelle moderne** — créez des flows en glissant-déposant des nodes, avec un accent sur la simplicité et la rapidité d'exécution.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [flow-like.com](https://flow-like.com) |
|
||||
| **GitHub** | [flow-like/flow-like](https://github.com/flow-like/flow-like) |
|
||||
| **License** | MIT (présumé) |
|
||||
| **Langage** | TypeScript / Rust |
|
||||
| **Étoiles GitHub** | <1k ⭐ |
|
||||
| **Catégorie** | [[cat-workflow-automation|Workflow Automation]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**Flow-Like** est un projet d'**automatisation de workflows** relativement récent, qui met l'accent sur une UX moderne et un moteur d'exécution performant. La promesse est de combiner la simplicité visuelle d'outils comme n8n avec la performance d'un moteur compilé. ⚠️ **Note** : projet peu mature, peu d'informations publiques détaillées — détails techniques à confirmer. Pour qui: early adopters qui veulent tester une alternative fraîche à n8n/Make. Catégorie Workflow Automation.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (présumé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
flow-like:
|
||||
image: ghcr.io/flow-like/flow-like:latest
|
||||
container_name: flow-like
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "7777:8080"
|
||||
environment:
|
||||
- DATABASE_URL=postgresql://flowlike:***@postgres:5432/flowlike
|
||||
- SECRET_KEY=*** volumes:
|
||||
- ./data:/data
|
||||
depends_on:
|
||||
- postgres
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.flowlike.rule=Host(`flows.example.com`)"
|
||||
- "traefik.http.routers.flowlike.entrypoints=websecure"
|
||||
- "traefik.http.routers.flowlike.tls.certresolver=letsencrypt"
|
||||
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
container_name: flow-like-db
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- POSTGRES_USER=flowlike
|
||||
- POSTGRES_PASSWORD=*** - POSTGRES_DB=flowlike
|
||||
volumes:
|
||||
- flowlike-db:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
flowlike-db:
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-n8n]] — Standard de fait, plus mature
|
||||
- [[app-activepieces]] — Concurrent TypeScript moderne
|
||||
- [[app-automatisch]] — Concurrent AGPL
|
||||
- [[app-kestra]] — YAML déclaratif
|
||||
|
||||
### Propriétaires
|
||||
- **Zapier** — Leader marché
|
||||
- **Make** — UI visuelle
|
||||
- **n8n Cloud** — Version managée de n8n
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **HTTPS obligatoire** : via Traefik.
|
||||
- **Auth locale** : username/password.
|
||||
- **Secrets chiffrés** : à confirmer selon l'implémentation.
|
||||
- **Self-host** : pas de données envoyées au cloud.
|
||||
|
||||
## 📚 Ressources
|
||||
- [Selfh.st — Flow-Like](https://selfh.st/apps/?tag=Workflow+Automation)
|
||||
- [[app-n8n]] — Référence du domaine
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-workflow-automation]] — Catégorie Workflow Automation
|
||||
- [[app-n8n]] — Concurrent principal
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
Reference in New Issue
Block a user