Blame

312d31 theophile 2025-12-31 16:18:45
erreur, j'ai mis en récursif
1
# Readeck
2
3
- [Project Page](https://readeck.org)
4
- [Source code](https://codeberg.org/readeck/readeck)
5
6
> Readeck is an open source web application that lets you save content from the web so you can access it later and keep it forever.
7
8
**Technologies**:
9
10
- Go (templ)
11
- Turbo Hotwire
12
- TailwindCSS
13
- SQLite (or PostgreSQL)
14
15
:::info
16
Our current setup is the SQLite version, having migrated from an initial PostgreSQL instance. This is due to some bugs in the DB export system and PostgreSQL. An added benefit to the SQLite version, found in other deployments of ours, is that the backup and restore is super easy. Just copy and paste.
17
:::
18
19
## Admin
20
21
### Export & Import
22
23
Manual import of a zip file downloaded via the interface. _This command only works if the user does not already exist_:
24
25
```bash
26
docker compose exec app readeck import -config /readeck/config.toml /readeck/readeck-user-20251012-1614.zip
27
```
28
:::info
29
`/readeck` is the internal path to the volume at `/mnt/data/readeck`.
30
:::