--- title: Owlistic created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, app, note-taking, auto-hebergement] confidence: medium contested: false sources: - https://selfh.st/apps/?search=owlistic - https://github.com/owlistic-notes/owlistic --- # 📝 Owlistic > **Application de prise de notes et de to-do en temps réel, avec synchronisation multi-appareils chiffrée.** ## 📊 Métadonnées | Champ | Valeur | | :--- | :--- | | **Nom** | Owlistic | | **Slug** | `owlistic` | | **Catégorie principale** | [[cat-note-taking]] | | **Langage** | lang_id=11 | | **Stars** | ⭐ 432 | | **Dernière MAJ** | 2025-06-01 | | **Repo** | [github.com/owlistic-notes/owlistic](https://github.com/owlistic-notes/owlistic) | | **Site** | [owlistic-notes.github.io/owlistic/](https://owlistic-notes.github.io/owlistic/) | ## 📝 Description Owlistic combine prise de notes et gestion de tâches dans une seule interface réactive, avec une couche de synchronisation temps réel entre appareils. Le projet vise les utilisateurs qui trouvent Obsidian trop complexe et Apple Notes trop verrouillé. Côté technique, l'application s'appuie sur une base relationnelle et une API qui propage les changements en WebSocket. L'éditeur supporte le Markdown et des vues kanban pour la partie to-do. ## 🐳 Installation Docker ```yaml # docker-compose.yml minimal services: owlistic: image: ghcr.io/owlistic-notes/owlistic:latest container_name: owlistic restart: unless-stopped ports: - "8000:8000" volumes: - ./data:/app/data environment: - PUID=1000 - PGID=1000 ``` > ⚠️ Adapte image/port/volumes selon le README officiel : https://github.com/owlistic-notes/owlistic ## 🔀 Reverse Proxy (Traefik) ```yaml services: owlistic: image: ghcr.io/owlistic-notes/owlistic:latest labels: - "traefik.enable=true" - "traefik.http.routers.owlistic.rule=Host(`owlistic.example.com`)" - "traefik.http.routers.owlistic.entrypoints=websecure" - "traefik.http.routers.owlistic.tls.certresolver=letsencrypt" - "traefik.http.services.owlistic.loadbalancer.server.port=8000" ``` ## 🔧 Configuration - Backend Node.js + base PostgreSQL recommandée - WebSocket activé pour la synchro temps réel - Configuration de la clé de chiffrement côté serveur ## 🔀 Alternatives **Open source** : - Joplin (client lourd + sync) - AppFlowy (Notion-like open source) - Trilium Notes (PKM avancé) **Propriétaires** : - Notion (freemium, populaire) - Todoist (to-do, freemium) ## 🔒 Sécurité - Authentification requise - Données chiffrées en transit (HTTPS) ; vérifier la prise en charge du chiffrement at-rest ## 📚 Ressources - [selfh.st/apps/?search=owlistic](https://selfh.st/apps/?search=owlistic) - [GitHub](https://github.com/owlistic-notes/owlistic) - [Site officiel](https://owlistic-notes.github.io/owlistic/) ## 🔗 Pages Liées - [[cat-note-taking]] — Catégorie note-taking - [[Catalogue-Self-Hosted]] — Hub principal