PlainShelf is a local-first personal reading library for plain text books.
It is designed for single-user local usage, with a filesystem-first data model and a web-based reading interface.
Status: pre-alpha / early development
APIs, data layout, and UI behavior may still change.
- Manage and read TXT books
- Keep user data in local, human-readable files
- Use stable internal book IDs independent from display titles
- Provide a local web UI for browsing, importing, organizing, and reading
- Keep runtime state rebuildable
- Stay friendly to backup tools and Git-based workflows
PlainShelf is currently TXT-focused. Other text-like formats may be explored later, but plain text reading is the primary use case.
The following are not planned for the current v1 scope:
- EPUB support
- PDF support
- CBZ / CBR support
- DRM formats
- OCR
- Multi-user support
- Cloud sync
- Public sharing links
- Plugin system
PlainShelf is not intended to be a full Calibre replacement.
cmd/
└─ plainshelf-srv/ # local server entrypoint
shelf/ # core library package
server/ # local HTTP server implementation
frontend/ # Vue web frontend
internal/ # internal shared utilities
The current primary development focus is:
shelfserverfrontend
PlainShelf is filesystem-first.
A typical vault may look like this:
lib/
├─ books/
└─ app/
Source of truth.
This contains user-owned data such as book metadata, text files, covers, notes, and other long-lived files.
Runtime state.
cd frontend
npm install
# use mock data
VITE_USE_MOCK_API=true npm run dev# build frontend
cd frontend
npm install
npm run build
cd ..
# run server
mkdir workspace
cp cmd/plainshelf-srv/conf/config.yaml workspace/
cd workspace
go run ../cmd/plainshelf-srv/main.go -conf config.yamlThe default development config listens on 127.0.0.1:20000, stores shelf and mark data under the current working directory, and enables local_token security for mutating /api requests. The server generates an ephemeral token at startup, injects it into the served frontend, and accepts it via X-PlainShelf-Token or Authorization: Bearer <token>.
Build the Ubuntu 24.04-based container image from the repository root:
docker build -t plainshelf .Start the server on http://localhost:20000 with persistent application data in a Docker volume:
docker run --rm \
--name plainshelf \
-p 127.0.0.1:20000:20000 \
-v plainshelf-data:/data \
plainshelfThe image uses docker/config.yaml, which listens on 0.0.0.0:20000
inside the container, stores data in /data/shelf and /data/store, and explicitly sets app_conf.security.mode: "none" for compatibility with local-only port publishing. Keep the documented 127.0.0.1:20000:20000 port binding or put the container behind a trusted authentication boundary before exposing it beyond the local machine.
To use a custom server config, mount it over /etc/plainshelf/config.yaml:
docker run --rm \
--name plainshelf \
-p 127.0.0.1:20000:20000 \
-v plainshelf-data:/data \
-v "$PWD/path/to/config.yaml:/etc/plainshelf/config.yaml:ro" \
plainshelfnpm --prefix frontend run build
go test ./...BSD 3-Clause