90 lines
2.8 KiB
Markdown
90 lines
2.8 KiB
Markdown
---
|
|
title: Dittofeed
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, marketing, app-marathon3-rattrapage-final-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Marketing&app=dittofeed]
|
|
---
|
|
|
|
# 📣 Dittofeed
|
|
|
|
> Plateforme d'automation marketing open source — alternative auto-hébergeable à Customer.io / Braze.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [dittofeed.com](https://dittofeed.com) |
|
|
| **GitHub** | [dittofeed/dittofeed](https://github.com/dittofeed/dittofeed) |
|
|
| **License** | MIT |
|
|
| **Langage** | TypeScript |
|
|
| **Étoiles GitHub** | ~3k ⭐ |
|
|
| **Catégorie** | [[cat-marketing\|Marketing]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Dittofeed** est une plateforme d'orchestration de messaging multi-canal (email, SMS, push, webhooks). Construite sur Apache Kafka + Postgres, elle propose un éditeur visuel de journeys utilisateur, segmentation RFM, A/B testing et intégrations avec SendGrid, Postmark, Twilio, SES, etc. Compatible API Customer.io pour migration.
|
|
|
|
Différence vs Mautic : stack plus moderne (Kafka, TypeScript, éditeur visuel de flows), orientée product-led growth, moins orientée campagnes one-shot. Pour qui : startups SaaS hébergeant leur stack marketing, devs préférant YAML/JSON à l'UI de campagne.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
dittofeed:
|
|
image: dittofeed/dittofeed:latest
|
|
container_name: dittofeed
|
|
restart: unless-stopped
|
|
environment:
|
|
- DATABASE_URL=postgresql://dittofeed:***@db/dittofeed
|
|
- BOOTSTRAP_HOST=0.0.0.0
|
|
depends_on:
|
|
- db
|
|
ports:
|
|
- "3000:3000"
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.dittofeed.rule: "Host(`marketing.example.com`)"
|
|
db:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_USER: dittofeed
|
|
POSTGRES_PASSWORD: dittofeed
|
|
POSTGRES_DB: dittofeed
|
|
volumes:
|
|
- ./db-data:/var/lib/postgresql/data
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-mautic]] — Leader open source historique
|
|
- [[app-listmonk]] — Newsletter + automation simple
|
|
- [[app-postiz]] — Social media scheduling
|
|
|
|
### Propriétaires
|
|
- **Customer.io** — Référence SaaS, API compatible
|
|
- **Braze** — Plateforme enterprise
|
|
- **Mailchimp** — Grand public
|
|
|
|
## 🔐 Sécurité
|
|
- **API admin** : token Bearer obligatoire, à garder secret
|
|
- **Webhooks entrants** : signer les payloads (HMAC)
|
|
- **Deliverability** : configurer SPF/DKIM/DMARC sur votre domaine d'envoi
|
|
- **RGPD** : moteur de préférences utilisateur intégré
|
|
|
|
## 📚 Ressources
|
|
- [Documentation](https://docs.dittofeed.com/)
|
|
- [GitHub](https://github.com/dittofeed/dittofeed)
|
|
|
|
## Pages Liées
|
|
- [[cat-marketing]] — Catégorie Marketing
|
|
- [[app-mautic]] — Concurrent open source principal
|
|
- [[recettes-docker-compose]] — Templates Docker
|