81 lines
2.5 KiB
Markdown
81 lines
2.5 KiB
Markdown
---
|
|
title: Spoolman
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, 3d-printing, filament, inventory, app-marathon3-batch-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=3D+Printing, https://github.com/Donkie/Spoolman]
|
|
---
|
|
|
|
# 🖨️ Spoolman
|
|
|
|
> Gestionnaire d'inventaire de filaments pour imprimantes 3D, avec API ouverte.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [github.com/Donkie/Spoolman](https://github.com/Donkie/Spoolman) |
|
|
| **GitHub** | [Donkie/Spoolman](https://github.com/Donkie/Spoolman) |
|
|
| **License** | MIT |
|
|
| **Langage** | Python + Svelte |
|
|
| **Étoiles GitHub** | 1.2k ⭐ |
|
|
| **Catégorie** | [[cat-3d-printing|3D Printing]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Spoolman** est un système d'inventaire de filaments 3D (bobines). Track : marque, matériau (PLA/PETG/ABS), couleur, poids restant, lieu de stockage. Fournit une **API REST** que OctoPrint, Klipper, SpoolEase et autres peuvent interroger pour décrémenter automatiquement.
|
|
|
|
**Différence vs Manyfold** : Spoolman = filaments, Manyfold = modèles. Deux outils complémentaires dans un atelier 3D.
|
|
|
|
**Pour qui** : makers avec beaucoup de bobines, fab labs, makerspaces partagés.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
spoolman:
|
|
image: ghcr.io/donkie/spoolman:latest
|
|
container_name: spoolman
|
|
restart: unless-stopped
|
|
ports:
|
|
- "7912:8000"
|
|
volumes:
|
|
- ./data:/home/spoolman/.local/share/spoolman
|
|
environment:
|
|
- SPOOLMAN_DB_TYPE=sqlite
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.spoolman.rule: "Host(`filaments.example.com`)"
|
|
traefik.http.routers.spoolman.tls.certresolver: letsencrypt
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-manyfold]] — Bibliothèque de modèles (complément)
|
|
- **Spoolman plugins Klipper/OctoPrint** : décrément auto
|
|
- **Filaman** — Variante plus minimaliste
|
|
|
|
### Propriétaires
|
|
- **Aucun** — pas de SaaS leader sur ce créneau
|
|
|
|
## 🔐 Sécurité
|
|
- **API REST** : authentification par token (optionnelle)
|
|
- **SQLite** : pas de service DB séparé requis
|
|
- **Pas d'auth utilisateur** par défaut : à exposer via VPN ou auth
|
|
|
|
## 📚 Ressources
|
|
- [Documentation Spoolman](https://github.com/Donkie/Spoolman/wiki)
|
|
- [API Reference](https://github.com/Donkie/Spoolman/wiki/API)
|
|
|
|
## Pages Liées
|
|
- [[cat-3d-printing]] — Catégorie 3D Printing
|
|
- [[app-manyfold]] — Complément pour modèles
|
|
- [[recettes-docker-compose]] — Templates Docker
|