91 lines
2.5 KiB
Markdown
91 lines
2.5 KiB
Markdown
---
|
|
title: Habitica
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, habit-tracking, gamification, nodejs, app-marathon3-batch-a]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Habit+Tracking, https://habitica.com/]
|
|
---
|
|
|
|
# ✅ Habitica
|
|
|
|
> Application de suivi d'habitudes gamifiée (RPG), open source.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [habitica.com](https://habitica.com/) |
|
|
| **GitHub** | [HabitRPG/habitica](https://github.com/HabitRPG/habitica) |
|
|
| **License** | GPL-3.0 |
|
|
| **Langage** | Node.js + Vue |
|
|
| **Étoiles GitHub** | 13k ⭐ |
|
|
| **Catégorie** | [[cat-habit-tracking|Habit Tracking]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Habitica** transforme le suivi d'habitudes, tâches et to-do en **RPG gamifié** : tu gagnes de l'XP et de l'or en accomplissant tes habitudes, tu perds des PV en oubliant. Personnage avatar, classes, quêtes coop, défis avec la communauté, récompenses custom.
|
|
|
|
**Différence vs [[app-beaver-habit-tracker]]** : Habitica = gamification forte + réseau social. Beaver = suivi simple, sans RPG.
|
|
|
|
**Pour qui** : personnes qui ont du mal à maintenir des routines et sont motivées par la dimension ludifiée.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
habitica:
|
|
image: habitica/habitica-server:latest
|
|
container_name: habitica
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- DB_URL=mongodb://mongo:27017/habitica
|
|
depends_on:
|
|
- mongo
|
|
mongo:
|
|
image: mongo:7
|
|
container_name: habitica-mongo
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./mongo-data:/data/db
|
|
labels:
|
|
traefik.enable: "false"
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-beaver-habit-tracker]] — Plus simple
|
|
- [[app-habittrove]] — Calendar-based
|
|
- [[app-habitsync]] — Multi-plateformes
|
|
- **Loop Habit Tracker** (Android)
|
|
- **Streaks** clones
|
|
|
|
### Propriétaires
|
|
- **Streaks** (iOS) — Payant
|
|
- **Way of Life** — Payant
|
|
- **Notion** templates — DIY
|
|
|
|
## 🔐 Sécurité
|
|
- **2FA** : natif (TOTP)
|
|
- **OAuth2** : Google, Apple
|
|
- **HTTPS** : recommandé
|
|
- **Données personnelles** : hébergées en DB Mongo, à protéger
|
|
|
|
## 📚 Ressources
|
|
- [Documentation Habitica](https://habitica.com/user/settings/api)
|
|
- [Wiki communauté](https://habitica.fandom.com/wiki/Habitica_Wiki)
|
|
|
|
## Pages Liées
|
|
- [[cat-habit-tracking]] — Catégorie Habit Tracking
|
|
- [[app-beaver-habit-tracker]] — Alternative simple
|
|
- [[recettes-docker-compose]] — Templates Docker
|