Initial vault setup
This commit is contained in:
@@ -0,0 +1,97 @@
|
||||
---
|
||||
title: Anchr
|
||||
created: 2026-06-07
|
||||
updated: 2026-06-07
|
||||
type: app
|
||||
tags: [catalogue, bookmarks, typescript, svelte]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=bookmarks]
|
||||
---
|
||||
|
||||
# Anchr ⚓
|
||||
> Gestionnaire de bookmarks en TypeScript (SvelteKit) avec une UI simple et fonctionnelle, conçu pour la gestion personnelle rapide sans fioritures.
|
||||
|
||||
| Métadonnée | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | https://anchr.io |
|
||||
| **GitHub** | https://github.com/nhjmrigi/anchr |
|
||||
| **License** | MIT |
|
||||
| **Langage** | TypeScript (SvelteKit) |
|
||||
| **Étoiles** | 34 |
|
||||
| **Dernière MAJ** | 2024 |
|
||||
| **Catégorie** | [[cat-bookmarks]] |
|
||||
|
||||
## Description
|
||||
|
||||
Anchr est un bookmark manager moderne construit sur SvelteKit. L'interface privilégie la sobriété et la rapidité : un champ de recherche, une liste de liens avec aperçu OpenGraph, des collections, des tags, et un système d'extension navigateur pour ajouter des liens en un clic.
|
||||
|
||||
L'API est REST/JSON, le stockage est SQLite, et l'app supporte l'import/export depuis les formats standards (HTML navigateur, JSON, etc.). La communauté est active et les releases fréquentes.
|
||||
|
||||
C'est une bonne alternative à Linkwarden ou Grimoire pour quelqu'un qui veut une stack Svelte moderne et un déploiement Docker simple.
|
||||
|
||||
## Installation
|
||||
|
||||
### Option 1 : Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
anchr:
|
||||
image: ghcr.io/nhjmrigi/anchr:latest
|
||||
container_name: anchr
|
||||
ports:
|
||||
- "8100:3000"
|
||||
environment:
|
||||
- ANCHR_SECRET=*** - DATABASE_URL=file:./data/anchr.db
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
### Option 2 : Installation manuelle
|
||||
|
||||
```bash
|
||||
git clone https://github.com/nhjmrigi/anchr.git
|
||||
cd anchr
|
||||
npm install
|
||||
npm run build
|
||||
node build/index.js
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
- `ANCHR_SECRET` long et aléatoire.
|
||||
- Configurer SMTP pour reset password.
|
||||
- Activer HTTPS via reverse-proxy.
|
||||
|
||||
## Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-linkwarden]] — référence
|
||||
- [[app-grimoire]] — Go
|
||||
- [[app-shaarli]] — vétéran PHP
|
||||
- [[app-faved]] — Python
|
||||
- [[app-wallabag]] — read-it-later
|
||||
|
||||
### Propriétaires
|
||||
- Pocket
|
||||
- Raindrop.io
|
||||
- Pinboard
|
||||
- Bookmarks Chrome
|
||||
|
||||
## Sécurité
|
||||
|
||||
- HTTPS obligatoire.
|
||||
- `ANCHR_SECRET` long.
|
||||
- Sauvegardes SQLite.
|
||||
- Mises à jour SvelteKit/Node pour CVE.
|
||||
|
||||
## Ressources
|
||||
- [Dépôt GitHub](https://github.com/nhjmrigi/anchr)
|
||||
- [selfh.st listing](https://selfh.st/apps/?tag=bookmarks)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-bookmarks]]
|
||||
- [[recettes-docker-compose]]
|
||||
- [[securisation-home-lab]]
|
||||
Reference in New Issue
Block a user