87 lines
2.6 KiB
Markdown
87 lines
2.6 KiB
Markdown
---
|
|
title: GeoPulse
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, location, app-marathon3-rattrapage-final-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Location&app=geopulse]
|
|
---
|
|
|
|
# 🌐 GeoPulse
|
|
|
|
> Tableau de bord temps réel pour tracker vos proches / véhicules / assets — multi-utilisateurs, cartes, alertes.
|
|
|
|
## 📋 Informations Génériques
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | (projet GitHub) |
|
|
| **GitHub** | [geopulse/geopulse](https://github.com/geopulse/geopulse) ou fork similaire |
|
|
| **License** | MIT |
|
|
| **Langage** | TypeScript |
|
|
| **Étoiles GitHub** | < 0.3k ⭐ |
|
|
| **Catégorie** | [[cat-location\|Location]] |
|
|
|
|
## 📝 Description
|
|
|
|
**GeoPulse** est un dashboard de géolocalisation multi-cibles : ingestion de positions (OwnTracks, Traccar, GPSLogger), affichage temps réel sur carte, historique, alertes (entrée/sortie de zones), stats par device. UI web moderne, multi-utilisateurs.
|
|
|
|
Différence vs Traccar : GeoPulse est **une couche visualisation** au-dessus d'un backend de capture, pas un serveur GPS natif. Pour qui : utilisateurs Traccar/OwnTracks qui veulent une UI plus moderne, ou familles voulant un dashboard privé.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
geopulse:
|
|
image: ghcr.io/geopulse/geopulse:latest
|
|
container_name: geopulse
|
|
restart: unless-stopped
|
|
environment:
|
|
- DATABASE_URL=postgresql://geopulse:***@db/geopulse
|
|
- OWNTRACKS_URL=ws://geopulse:port
|
|
depends_on:
|
|
- db
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.geopulse.rule: "Host(`geo.example.com`)"
|
|
db:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_USER: geopulse
|
|
POSTGRES_PASSWORD: geopulse
|
|
POSTGRES_DB: geopulse
|
|
volumes:
|
|
- ./db-data:/var/lib/postgresql/data
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-owntracks-recorder]] — Serveur OwnTracks natif
|
|
- [[app-reitti]] — Analytics post-hoc
|
|
- [[app-hauk]] — Partage éphémère
|
|
|
|
### Propriétaires
|
|
- **Traccar Cloud** — SaaS Traccar managé
|
|
- **Life360** — Famille grand public
|
|
- **Find My** — Réseau Apple
|
|
|
|
## 🔐 Sécurité
|
|
- **Auth** : login + OIDC possible
|
|
- **API ingestion** : token, rate limiting
|
|
- **TLS** : obligatoire, positions sont des données personnelles
|
|
- **Alertes** : webhook secrets à protéger
|
|
|
|
## 📚 Ressources
|
|
- [GitHub](https://github.com/geopulse/geopulse)
|
|
|
|
## Pages Liées
|
|
- [[cat-location]] — Catégorie Location
|
|
- [[app-owntracks-recorder]] — Source de données
|
|
- [[recettes-docker-compose]] — Templates Docker
|