86 lines
2.4 KiB
Markdown
86 lines
2.4 KiB
Markdown
---
|
|
title: Meerkat CRM
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, crm, app-marathon3-rattrapage-final-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=CRM&app=meerkat-crm]
|
|
---
|
|
|
|
# 🦡 Meerkat CRM
|
|
|
|
> CRM léger et self-hosted — focus PME, déployable en quelques minutes.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [meerkatcrm.com](https://meerkatcrm.com) |
|
|
| **GitHub** | [meerkatcrm/meerkat](https://github.com/meerkatcrm/meerkat) |
|
|
| **License** | AGPL-3.0 |
|
|
| **Langage** | TypeScript |
|
|
| **Étoiles GitHub** | < 0.5k ⭐ |
|
|
| **Catégorie** | [[cat-crm\|CRM]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Meerkat CRM** est un CRM minimaliste écrit en TypeScript, pensé pour les indépendants et TPE : gestion de contacts, pipeline de ventes (Kanban), facturation simple, prise de notes par contact. UI orientée clavier (raccourcis type Linear).
|
|
|
|
Différence vs EspoCRM : beaucoup plus petit en surface fonctionnelle, mais UI/UX moderne et agréable. Pour qui : freelances et microstructures qui n'ont pas besoin d'un ERP déguisé en CRM.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
meerkat:
|
|
image: ghcr.io/meerkatcrm/meerkat:latest
|
|
container_name: meerkat-crm
|
|
restart: unless-stopped
|
|
environment:
|
|
- DATABASE_URL=postgresql://meerkat:***@db/meerkat
|
|
- JWT_SECRET=change-me
|
|
depends_on:
|
|
- db
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.meerkat.rule: "Host(`crm.example.com`)"
|
|
db:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_USER: meerkat
|
|
POSTGRES_PASSWORD: meerkat
|
|
POSTGRES_DB: meerkat
|
|
volumes:
|
|
- ./db-data:/var/lib/postgresql/data
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-espocrm]] — Standard PHP open source
|
|
- [[app-twenty]] — CRM moderne complet
|
|
- [[app-atomic-crm]] — Base React Admin
|
|
|
|
### Propriétaires
|
|
- **Pipedrive** — Pipeline-driven
|
|
- **HubSpot CRM** — Tier gratuit
|
|
|
|
## 🔐 Sécurité
|
|
- **JWT_SECRET** : long, aléatoire, jamais commité
|
|
- **Backups** : `pg_dump` quotidien
|
|
- **HTTPS** : obligatoire en production (Traefik + Let's Encrypt)
|
|
|
|
## 📚 Ressources
|
|
- [Site officiel](https://meerkatcrm.com)
|
|
- [GitHub](https://github.com/meerkatcrm/meerkat)
|
|
|
|
## Pages Liées
|
|
- [[cat-crm]] — Catégorie CRM
|
|
- [[app-espocrm]] — Concurrent open source mature
|
|
- [[recettes-docker-compose]] — Templates Docker
|