bae363893b32893941f73456005f9ddec6ff59ab
The book_comments collection has a custom 'id' field (type: text, required: true) distinct from PocketBase's system record ID. Every comment POST was returning 400 validation_required because the id field was never sent. Fix: generate a 15-char hex ID via crypto.randomUUID() and include it in the payload, matching PocketBase's own ID alphabet.
LibNovel
Self-hosted audiobook platform. Go backend + SvelteKit UI + MinIO/PocketBase/Meilisearch.
Requirements
- Docker + Docker Compose
- just
- Doppler CLI
Setup
doppler login
doppler setup # project=libnovel, config=prd
Usage
just up # start everything
just down # stop
just logs # tail all logs
just log backend # tail one service
just build # rebuild images
just restart # down + up
just secrets # view/edit secrets
Secrets
Managed via Doppler (project=libnovel, config=prd). No .env files.
To add or update a secret:
doppler secrets set MY_SECRET=value
Description