Initial vault setup
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
---
|
||||
title: ByteStash
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, code-snippets, app-marathon3-final-context]
|
||||
confidence: high
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=Code+Snippets&app=bytestash]
|
||||
---
|
||||
|
||||
# 📋 ByteStash
|
||||
|
||||
> **ByteStash** : Gestionnaire de snippets de code : multi-langage, tags, syntax highlighting, partage public, API REST. Self-hosted, simple.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [https://github.com/jordan-dalby/ByteStash](https://github.com/jordan-dalby/ByteStash) |
|
||||
| **GitHub** | [jordan-dalby/ByteStash](https://github.com/jordan-dalby/ByteStash) |
|
||||
| **License** | MIT |
|
||||
| **Langage** | TypeScript |
|
||||
| **Catégorie** | [[cat-code-snippets|Code Snippets]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**ByteStash** est gestionnaire de snippets de code : multi-langage, tags, syntax highlighting, partage public, api rest. self-hosted, simple.
|
||||
|
||||
Différence avec les alternatives majeures : positionnement auto-hébergé et open source, sans tracking, sans dépendance cloud propriétaire.
|
||||
|
||||
Pour qui : utilisateurs qui cherchent une alternative souveraine à des solutions SaaS propriétaires du même segment.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
bytestash:
|
||||
image: ghcr.io/jordan-dalby/ByteStash:latest
|
||||
container_name: bytestash
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=Europe/Paris
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.bytestash.rule=Host(`bytestash.example.com`)"
|
||||
- "traefik.http.routers.bytestash.entrypoints=websecure"
|
||||
- "traefik.http.routers.bytestash.tls.certresolver=letsencrypt"
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-snippets-library]], [[app-gist]]-like — alternatives dans le même segment
|
||||
|
||||
### Propriétaires (ce que ByteStash remplace)
|
||||
- **GitHub Gists, Snippet Box** — solutions SaaS du même domaine
|
||||
|
||||
## 🔐 Sécurité
|
||||
|
||||
- **Authentification** : vérifier la configuration par défaut (changer les credentials initiaux)
|
||||
- **Exposition réseau** : derrière Traefik + TLS (Let's Encrypt) recommandé
|
||||
- **Backups** : sauvegarder `./data` régulièrement
|
||||
- **Mises à jour** : surveiller les releases GitHub pour patches de sécurité
|
||||
|
||||
## 📚 Ressources
|
||||
|
||||
- [GitHub https://github.com/jordan-dalby/ByteStash](https://github.com/jordan-dalby/ByteStash)
|
||||
- [Site officiel](https://github.com/jordan-dalby/ByteStash)
|
||||
- [selfh.st/apps](https://selfh.st/apps/?tag=Code+Snippets&app=bytestash)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-code-snippets|Code Snippets]] — Catégorie Code Snippets
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
- [[securisation-home-lab]] — Sécurité
|
||||
- [[glossaire-homelab]] — Vocabulaire
|
||||
Reference in New Issue
Block a user