From bc54c8c31e7f50a7a365f9b4d22fe8c74a29f61a Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Sat, 21 Mar 2026 21:35:51 +0100 Subject: Add user authentication with email verification and password reset Implements registration, login/logout, email verification via token, and password reset flow. Includes CSRF protection, flash messages, MailPit for dev email testing, and security docs in README. --- docker-compose.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index a173959..1c6968f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,6 +16,12 @@ services: - .env depends_on: - mariadb + - mailpit + + mailpit: + image: axllent/mailpit:v1.24 + ports: + - "8025:8025" mariadb: image: mariadb:10.11.11 -- cgit v1.2.3