Initial vault setup
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
---
|
||||
title: Laudspeaker
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, customer-engagement, app-marathon3-rattrapage-final-b]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=customer-engagement&app=laudspeaker]
|
||||
---
|
||||
|
||||
# 📣 Laudspeaker
|
||||
|
||||
> Plateforme d'onboarding, notifications et messaging client multi-canal (email, push, in-app).
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [laudspeaker.com](https://laudspeaker.com/) |
|
||||
| **GitHub** | [laudspeaker/laudspeaker](https://github.com/laudspeaker/laudspeaker) |
|
||||
| **License** | AGPL-3.0 |
|
||||
| **Langage** | TypeScript |
|
||||
| **Étoiles GitHub** | ~3k ⭐ |
|
||||
| **Catégorie** | [[cat-customer-engagement|Customer Engagement]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**Laudspeaker** est une alternative open source à Customer.io / Braze : gestion de segments, automatisations multi-étapes, templates email/push/in-app, tracking d'événements utilisateur, A/B testing. Différence vs Customer.io : 100% auto-hébergeable, données jamais partagées. Pour qui : SaaS en croissance qui veut une stack engagement contrôlée.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
laudspeaker:
|
||||
image: ghcr.io/laudspeaker/laudspeaker:latest
|
||||
container_name: laudspeaker
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- MONGO_URL=mongodb://mongo:27017/laudspeaker
|
||||
- JWT_SECRET=*** - API_BASE_URL=https://laud.example.com
|
||||
depends_on:
|
||||
- mongo
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.laud.rule=Host(`laud.example.com`)
|
||||
mongo:
|
||||
image: mongo:7
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- laudspeaker-mongo:/data/db
|
||||
volumes:
|
||||
laudspeaker-mongo:
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-typebot]] — Chatbots conversationnels
|
||||
- [[app-listmonk]] — Newsletters auto-hébergées
|
||||
|
||||
### Propriétaires
|
||||
- **Customer.io** — Plateforme engagement SaaS
|
||||
- **Braze** — Plateforme marketing client
|
||||
|
||||
## 🔐 Sécurité
|
||||
- Authentification : JWT + SSO optionnel
|
||||
- Stockage : MongoDB auto-hébergé
|
||||
|
||||
## 📚 Ressources
|
||||
- [Documentation](https://docs.laudspeaker.com/)
|
||||
- [GitHub](https://github.com/laudspeaker/laudspeaker)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-customer-engagement]] — Catégorie Customer Engagement
|
||||
- [[app-listmonk]] — Concurrent newsletters
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
Reference in New Issue
Block a user