Files
wiki/Catalogue-Self-Hosted/apps/app-habitsync.md
T
2026-06-09 18:40:21 +02:00

2.5 KiB


title: HabitSync created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, habit-tracking, sync, multi-platform, app-marathon3-batch-a] confidence: medium contested: false sources: [https://selfh.st/apps/?tag=Habit+Tracking]

HabitSync

Synchronisation d'habitudes entre plusieurs plateformes et devices.

📋 Informations Génériques

Champ Valeur
Site web github.com/habitsync
GitHub habitsync/habitsync
License MIT
Langage TypeScript
Étoiles GitHub < 0.3k
Catégorie [[cat-habit-tracking

📝 Description

HabitSync est un service de synchronisation d'habitudes : API centrale qui permet à plusieurs apps clientes (web, mobile, desktop) de partager le même état d'habitudes. Conçu pour les utilisateurs multi-appareils.

Différence vs app-beaver-habit-tracker : HabitSync est une couche de sync/API, pas un UI riche. Idéal comme backend unifié.

Pour qui : développeurs qui veulent un backend habits syncable, ou utilisateurs multi-appareils.

🚀 Installation

Docker Compose

version: '3.8'
services:
  habitsync:
    image: ghcr.io/habitsync/habitsync:latest
    container_name: habitsync
    restart: unless-stopped
    ports:
      - "8082:3000"
    volumes:
      - ./data:/app/data
    environment:
      - DATABASE_URL=postgres://habitsync:***@db:5432/habitsync
    depends_on:
      - db
    labels:
      traefik.enable: "true"
      traefik.http.routers.habitsync.rule: "Host(`sync.example.com`)"
      traefik.http.routers.habitsync.tls.certresolver: letsencrypt
  db:
    image: postgres:16
    restart: unless-stopped
    environment:
      POSTGRES_DB: habitsync
      POSTGRES_USER: habitsync
      POSTGRES_PASSWORD: secret
    volumes:
      - ./pgdata:/var/lib/postgresql/data

🔄 Alternatives

Open Source

Propriétaires

  • Streaks — iOS
  • Way of Life

🔐 Sécurité

  • API tokens : Bearer/JWT
  • HTTPS obligatoire
  • OAuth2 : supporte les clients tiers

📚 Ressources

Pages Liées