--- title: Project N.O.M.A.D. created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, archive, app-marathon-batch-b] confidence: medium contested: false sources: [https://selfh.st/apps/?tag=Archive&app=project-nomad] --- # 📩 Project N.O.M.A.D. > **Plateforme d'archive auto-hĂ©bergĂ©e type "knowledge base"** : bookmarks, notes, captures, recherche full-text, organisation par collections. ## 📋 Informations GĂ©nĂ©rales | Champ | Valeur | | :--- | :--- | | **Site web** | [github.com/.../nomad](https://github.com/) | | **GitHub** | (recherche projet-nomad) | | **License** | MIT (Ă  vĂ©rifier) | | **Langage** | TypeScript (Ă  vĂ©rifier) | | **Étoiles GitHub** | < 1k ⭐ | | **CatĂ©gorie** | [[cat-archive|Archive]] | ## 📝 Description **Project N.O.M.A.D.** (de Specifically Clementines) est une plateforme lĂ©gĂšre d'**archive personnelle** combinant bookmarks, snippets, fichiers joints et recherche full-text. L'idĂ©e : un "second brain" local pour centraliser ce que vous voulez garder. DiffĂ©rence vs ArchiveBox : ArchiveBox capture des pages web en multi-formats. NOMAD organise des ressources (pages, fichiers, notes) avec un focus **knowledge management**. Pour qui : power users qui veulent un Shaarli++ avec recherche et tags. ## 🚀 Installation ### Docker Compose (esquisse gĂ©nĂ©rique) ```yaml version: '3.8' services: nomad: image: specificallyclementines/project-nomad:latest container_name: nomad restart: unless-stopped environment: - DATABASE_URL=postgresql://nomad:***@db:5432/nomad - SECRET_KEY=*** volumes: - nomad_data:/app/data labels: - "traefik.enable=true" - "traefik.http.routers.nomad.rule=Host(`archive.example.com`)" - "traefik.http.routers.nomad.entrypoints=websecure" - "traefik.http.routers.nomad.tls.certresolver=letsencrypt" depends_on: - db db: image: postgres:16-alpine environment: - POSTGRES_USER=nomad - POSTGRES_PASSWORD=*** - POSTGRES_DB=nomad volumes: - nomad_db:/var/lib/postgresql/data volumes: nomad_data: nomad_db: ``` ## 🔄 Alternatives ### Open Source - [[app-archivebox]] — Web archive - [[app-wallabag]] — Read-it-later - **Shaarli** — Bookmarks classiques - **Linkwarden** — Bookmarks modernes + archive ### PropriĂ©taires - **Pocket** — Read-it-later - **Notion** — Workspace - **Raindrop.io** — Bookmarks visuels - **Pinboard** — Bookmarks payants ## 🔐 SĂ©curitĂ© - **Auth** : email/password (Ă  confirmer) - **HTTPS** : recommandĂ© - **DB chiffrĂ©e** : Postgres avec TLS - **Permissions** : public/privĂ© par collection ## 📚 Ressources - [GitHub (recherche)](https://github.com/search?q=project-nomad+self-hosted) - [Documentation (si disponible)](https://github.com/) ## Pages LiĂ©es - [[cat-archive]] — CatĂ©gorie Archive - [[app-archivebox]] — Concurrent - [[recettes-docker-compose]] — Templates Docker