96 lines
3.0 KiB
Markdown
96 lines
3.0 KiB
Markdown
---
|
|
title: Obico
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, 3d-printing, cloud, remote, app-marathon3-batch-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=3D+Printing, https://www.obico.io/]
|
|
---
|
|
|
|
# 🖨️ Obico
|
|
|
|
> Plateforme d'accès distant et d'IA pour imprimantes 3D — anciennement The Spaghetti Detective.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [obico.io](https://www.obico.io/) |
|
|
| **GitHub** | [TheSpaghettiDetective/obico-server](https://github.com/TheSpaghettiDetective/obico-server) |
|
|
| **License** | AGPL-3.0 |
|
|
| **Langage** | Python + JS |
|
|
| **Étoiles GitHub** | 1.3k ⭐ |
|
|
| **Catégorie** | [[cat-3d-printing|3D Printing]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Obico** (anciennement The Spaghetti Detective) ajoute une couche **cloud/IA** à OctoPrint et Klipper : accès distant sécurisé, détection d'échec d'impression par vision (deep learning), notifications push, mobile apps. Self-hostable (le serveur) avec l'agent local installé sur le Pi.
|
|
|
|
**Différence vs OctoPrint** : OctoPrint = serveur local, Obico = tunneling + IA + mobile. **Complémentaires** : on installe souvent le plugin Obico sur OctoPrint.
|
|
|
|
**Pour qui** : makers qui veulent imprimer à distance, surveiller leurs prints et être alertés en cas de problème (spaghetti, décollage, fin de filament).
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
obico:
|
|
image: the_silican/obico-server:latest
|
|
container_name: obico
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3334:3334"
|
|
environment:
|
|
- DEBUG=False
|
|
- SECRET_KEY=change-me
|
|
- DB_URL=postgres://obico:***@db:5432/obico depends_on:
|
|
- db
|
|
volumes:
|
|
- ./data:/app/backend/data
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.obico.rule: "Host(`remote-print.example.com`)"
|
|
traefik.http.routers.obico.tls.certresolver: letsencrypt
|
|
db:
|
|
image: postgres:15
|
|
container_name: obico-db
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: obico
|
|
POSTGRES_USER: obico
|
|
POSTGRES_PASSWORD: secret
|
|
volumes:
|
|
- ./pgdata:/var/lib/postgresql/data
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-octoprint]] — Serveur de base (à coupler)
|
|
- **OctoEverywhere** — Tunneling cloud gratuit
|
|
- **Klipper + Moonraker** — Sans IA mais natif Klipper
|
|
|
|
### Propriétaires
|
|
- **Bambu Lab Cloud** — IA intégrée imprimantes Bambu
|
|
- **Prusa Connect** — Cloud Prusa
|
|
|
|
## 🔐 Sécurité
|
|
- **Authentification** : compte utilisateur
|
|
- **Tunneling chiffré** : entre agent local et serveur
|
|
- **Notifications push** : FCM
|
|
- **Self-host** : nécessaire pour confidentialité des vidéos/IA
|
|
|
|
## 📚 Ressources
|
|
- [Documentation Obico](https://www.obico.io/docs/)
|
|
- [Plugin OctoPrint](https://github.com/TheSpaghettiDetective/OctoPrint-Detective)
|
|
|
|
## Pages Liées
|
|
- [[cat-3d-printing]] — Catégorie 3D Printing
|
|
- [[app-octoprint]] — Complément naturel
|
|
- [[recettes-docker-compose]] — Templates Docker
|