99 lines
2.9 KiB
Markdown
99 lines
2.9 KiB
Markdown
---
|
|
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
|