From d67bbc7d8c61ec318a8242a3142482857efed8fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Sat, 13 Apr 2024 16:10:46 +0200 Subject: [PATCH] docs: move sendria setup to the install guide --- docs/contributing/contributing.md | 10 ---------- docs/install.md | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/contributing/contributing.md b/docs/contributing/contributing.md index 9df730d..8fd7a5e 100644 --- a/docs/contributing/contributing.md +++ b/docs/contributing/contributing.md @@ -55,16 +55,6 @@ isort . black . ``` -## Working with emails - -To test the appearance of emails, you can use [Sendria](https://github.com/msztolcman/sendria): - -```bash -pip install sendria -sendria --db mails.sqlite -$NAVIGATOR http://127.0.0.1:1080 -``` - ## Docs We're using [MkDocs](https://www.mkdocs.org/) for this documentation. If you want to diff --git a/docs/install.md b/docs/install.md index 55c6374..879a4b0 100644 --- a/docs/install.md +++ b/docs/install.md @@ -102,3 +102,13 @@ To create a superuser, who will have access to the admin interface (/admin): ```shell python manage.py createsuperuser ``` + +## Working with emails + +To test the appearance of emails, you can use [Sendria](https://github.com/msztolcman/sendria): + +```bash +pip install sendria +sendria --db mails.sqlite +$NAVIGATOR http://127.0.0.1:1080 +```