Initial vault setup
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
---
|
||||
title: Sticky
|
||||
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=sticky
|
||||
- https://github.com/hamzasaleem2/sticky
|
||||
---
|
||||
|
||||
# 📝 Sticky
|
||||
|
||||
> **Application de post-it numériques pour organiser pensées, idées et tâches, façon tableau Kanban visuel.**
|
||||
|
||||
## 📊 Métadonnées
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Nom** | Sticky |
|
||||
| **Slug** | `sticky` |
|
||||
| **Catégorie principale** | [[cat-note-taking]] |
|
||||
| **Langage** | lang_id=15 |
|
||||
| **Stars** | ⭐ 168 |
|
||||
| **Dernière MAJ** | 2026-01-23 |
|
||||
| **Repo** | [github.com/hamzasaleem2/sticky](https://github.com/hamzasaleem2/sticky) |
|
||||
| **Site** | [www.sticky.today](https://www.sticky.today) |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
Sticky est une web-app qui reproduit l'expérience des post-it adhésifs physiques sur un tableau virtuel. L'utilisateur crée des notes colorées, les glisse-dépose, les groupe par colonnes ou par thèmes, et capture des idées à la volée.
|
||||
|
||||
L'interface est volontairement tactile-friendly, ce qui rend l'usage agréable depuis une tablette ou un navigateur mobile. Le code est publié sur GitHub sous une licence open source pour qui veut l'auto-héberger ou le forker.
|
||||
|
||||
## 🐳 Installation Docker
|
||||
|
||||
```yaml
|
||||
# docker-compose.yml minimal
|
||||
services:
|
||||
sticky:
|
||||
image: ghcr.io/hamzasaleem2/sticky:latest
|
||||
container_name: sticky
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
```
|
||||
|
||||
> ⚠️ Adapte image/port/volumes selon le README officiel : https://github.com/hamzasaleem2/sticky
|
||||
|
||||
## 🔀 Reverse Proxy (Traefik)
|
||||
|
||||
```yaml
|
||||
services:
|
||||
sticky:
|
||||
image: ghcr.io/hamzasaleem2/sticky:latest
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.sticky.rule=Host(`sticky.example.com`)"
|
||||
- "traefik.http.routers.sticky.entrypoints=websecure"
|
||||
- "traefik.http.routers.sticky.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.services.sticky.loadbalancer.server.port=8080"
|
||||
```
|
||||
|
||||
## 🔧 Configuration
|
||||
|
||||
- Stockage local par défaut (localStorage ou backend léger)
|
||||
- Thèmes de couleur configurables
|
||||
- Glisser-déposer natif HTML5
|
||||
|
||||
## 🔀 Alternatives
|
||||
|
||||
**Open source** :
|
||||
- Wekan (kanban complet)
|
||||
- Planka (kanban self-hosted)
|
||||
- AppFlowy (Notion-like)
|
||||
|
||||
**Propriétaires** :
|
||||
- Trello (freemium, Atlassian)
|
||||
- Miro (tableau collaboratif)
|
||||
|
||||
## 🔒 Sécurité
|
||||
|
||||
- Pas d'auth serveur par défaut
|
||||
- À protéger via reverse-proxy auth si partagé
|
||||
|
||||
## 📚 Ressources
|
||||
|
||||
- [selfh.st/apps/?search=sticky](https://selfh.st/apps/?search=sticky)
|
||||
- [GitHub](https://github.com/hamzasaleem2/sticky)
|
||||
- [Site officiel](https://www.sticky.today)
|
||||
|
||||
## 🔗 Pages Liées
|
||||
|
||||
- [[cat-note-taking]] — Catégorie note-taking
|
||||
- [[Catalogue-Self-Hosted]] — Hub principal
|
||||
Reference in New Issue
Block a user