From c5f996e75651da5938bf6e348f844051d5ef9df5 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Tue, 24 Mar 2026 16:11:22 -0500 Subject: [PATCH] Explain how to enable account registration --- docs/development/contributing.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/development/contributing.md b/docs/development/contributing.md index 27367b946..206602784 100644 --- a/docs/development/contributing.md +++ b/docs/development/contributing.md @@ -55,6 +55,14 @@ If you need help getting started with git, this is beyond the scope of the docum cd .. ``` - Generate the sample config via `cargo run -- config generate > config.yaml` +- To enable registration, add the following to `config.yaml`: + ```yaml + account: + password_registration_enabled: true + # Since no emails are sent by default and we want to be able to create some users for + # local dev, remove the email requirement. + password_registration_email_required: false + ``` - Run a PostgreSQL database locally ```sh docker run -p 5432:5432 -e 'POSTGRES_USER=postgres' -e 'POSTGRES_PASSWORD=postgres' -e 'POSTGRES_DATABASE=postgres' postgres