79 lines
2.2 KiB
Markdown
79 lines
2.2 KiB
Markdown
---
|
|
title: HabitTrove
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, habit-tracking, calendar, app-marathon3-batch-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Habit+Tracking, https://github.com/unclevito/habittrove]
|
|
---
|
|
|
|
# ✅ HabitTrove
|
|
|
|
> Suivi d'habitudes via calendrier visuel, focus sur la vue long-terme.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [github.com/unclevito/habittrove](https://github.com/unclevito/habittrove) |
|
|
| **GitHub** | [unclevito/habittrove](https://github.com/unclevito/habittrove) |
|
|
| **License** | MIT |
|
|
| **Langage** | JavaScript |
|
|
| **Étoiles GitHub** | < 0.2k ⭐ |
|
|
| **Catégorie** | [[cat-habit-tracking|Habit Tracking]] |
|
|
|
|
## 📝 Description
|
|
|
|
**HabitTrove** est un tracker d'habitudes open source avec une **vue calendrier** principale. Style GitHub contributions : grille colorée par jour d'accomplissement. Multi-habitudes, statistiques par semaine/mois/année, export de données.
|
|
|
|
**Différence vs [[app-beaver-habit-tracker]]** : HabitTrove met la **vue calendrier** au centre (type GitHub contributions). Beaver est plus classique.
|
|
|
|
**Pour qui** : utilisateurs qui aiment visualiser leurs habitudes comme un journal visuel.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
habittrove:
|
|
image: ghcr.io/unclevito/habittrove:latest
|
|
container_name: habittrove
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8081:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.habittrove.rule: "Host(`trove.example.com`)"
|
|
traefik.http.routers.habittrove.tls.certresolver: letsencrypt
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-beaver-habit-tracker]] — Classique
|
|
- [[app-habitica]] — Gamifié
|
|
- [[app-habitsync]] — Sync multi
|
|
- **Loop Habit Tracker** (Android)
|
|
|
|
### Propriétaires
|
|
- **Streaks** — iOS
|
|
- **Notion** templates
|
|
|
|
## 🔐 Sécurité
|
|
- **HTTPS** recommandé
|
|
- **Auth** : basique
|
|
|
|
## 📚 Ressources
|
|
- [GitHub HabitTrove](https://github.com/unclevito/habittrove)
|
|
|
|
## Pages Liées
|
|
- [[cat-habit-tracking]] — Catégorie Habit Tracking
|
|
- [[app-beaver-habit-tracker]] — Concurrent
|
|
- [[recettes-docker-compose]] — Templates Docker
|