--- 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