Initial vault setup
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
---
|
||||
title: Otter Wiki
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, wiki, app-marathon3-batch-c]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=wiki&app=otter-wiki]
|
||||
---
|
||||
|
||||
# 🦦 Otter Wiki
|
||||
|
||||
> Un wiki Markdown personnel léger et auto-hébergeable, avec éditeur WYSIWYG et collaboration.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [otter.wiki](https://otter.wiki) |
|
||||
| **GitHub** | [RedCoreTech/otter-wiki](https://github.com/RedCoreTech/otter-wiki) |
|
||||
| **License** | MIT |
|
||||
| **Langage** | Python (Flask) |
|
||||
| **Étoiles GitHub** | 600 ⭐ |
|
||||
| **Catégorie** | [[cat-wiki|Wiki]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**Otter Wiki** est un wiki Markdown auto-hébergeable simple et efficace : édition Markdown avec preview live WYSIWYG, hiérarchie de pages, historique de versions, recherche full-text, ACL, exports Markdown. Conçu pour les notes personnelles et wikis d'équipe. **Différence vs BookStack/DokuWiki** : plus moderne, UI épurée, Python/Flask (léger), focus personnel/small team, pas de catégories/ACL complexes. **Pour qui** : développeurs, chercheurs, petites équipes créant leur base de connaissances, remplacer un Notion personnel.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
otter-wiki:
|
||||
image: ghcr.io/redcoretech/otter-wiki:latest
|
||||
container_name: otter-wiki
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- otter-data:/app/data
|
||||
- otter-storage:/app/storage
|
||||
environment:
|
||||
SECRET_KEY: ${OTTER_SECRET}
|
||||
SITE_URL: "https://wiki.example.com"
|
||||
AUTOREGISTER: "false"
|
||||
labels:
|
||||
- "traefik.http.routers.otter.rule=Host(`wiki.example.com`)"
|
||||
- "traefik.http.routers.otter.tls.certresolver=letsencrypt"
|
||||
|
||||
volumes:
|
||||
otter-data:
|
||||
otter-storage:
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- **BookStack** — wiki structuré PHP, plus complet/corporate
|
||||
- **DokuWiki** — wiki PHP sans DB (files-only), old-school
|
||||
- **Wiki.js** — Node.js, riche mais lourd
|
||||
- **TiddlyWiki** — wiki mono-fichier HTML
|
||||
- **Trilium Notes** — PKM (Personal Knowledge Management)
|
||||
- **SiYuan** — PKM local-first
|
||||
|
||||
### Propriétaires
|
||||
- **Notion** — référence SaaS, possible en self-hosted via outils tiers
|
||||
- **Confluence** — wiki d'entreprise Atlassian
|
||||
- **Slab** — wiki entreprise US
|
||||
- **Tettra** — knowledge base AI
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **Auth locale** : username/password, OIDC optionnel
|
||||
- **2FA** : support TOTP
|
||||
- **Backups** : SQLite + storage à sauvegarder
|
||||
- **ACL par page** : lecture/écriture par utilisateur
|
||||
- **CSP strict** : protection XSS via Flask
|
||||
|
||||
## 📚 Ressources
|
||||
- [Documentation](https://github.com/RedCoreTech/otter-wiki#readme)
|
||||
- [Démo](https://otter.wiki)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-wiki]] — Catégorie Wiki
|
||||
- [[app-pocketbase]] — Backend léger
|
||||
- [[app-monica]] — Personnal data
|
||||
Reference in New Issue
Block a user