# Readeck - [Project Page](https://readeck.org) - [Source code](https://codeberg.org/readeck/readeck) > 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. **Technologies**: - Go (templ) - Turbo Hotwire - TailwindCSS - SQLite (or PostgreSQL) :::info 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. ::: ## Admin ### Export & Import Manual import of a zip file downloaded via the interface. _This command only works if the user does not already exist_: ```bash docker compose exec app readeck import -config /readeck/config.toml /readeck/readeck-user-20251012-1614.zip ``` :::info `/readeck` is the internal path to the volume at `/mnt/data/readeck`. :::