From c32fdefc3b47d64d57647b58501a58d5ddfdf0bf Mon Sep 17 00:00:00 2001 From: sneak Date: Mon, 21 Sep 2026 18:45:26 +0000 Subject: [PATCH] docs: fix Getting Started local-run example for the refused placeholder The startup now rejects the config.example.yml placeholder signing_key, so the documented `pixad --config config.example.yml` command aborts on first run. Show copying the example to config.yml and setting a real signing_key before running, matching the code. Model: opus-4-8 --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2bc9385..b3b5530 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,12 @@ git clone https://git.eeqj.de/sneak/pixa.git cd pixa make build -# run with a config file -./bin/pixad --config config.example.yml +# run with a config file: copy the example and set a real signing key +# (the example placeholder is refused at startup), e.g. with +# openssl rand -base64 32 +cp config.example.yml config.yml +$EDITOR config.yml # replace the signing_key placeholder +./bin/pixad --config config.yml # or build and run via Docker make docker