From de2bd45ae4ea76e9c8cedf3600eeca04381d73a2 Mon Sep 17 00:00:00 2001 From: "max.mehl" Date: Thu, 23 Dec 2021 13:32:58 +0100 Subject: [PATCH] update sample config --- config.sample.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/config.sample.py b/config.sample.py index 7daad5e..e440522 100644 --- a/config.sample.py +++ b/config.sample.py @@ -1,6 +1,11 @@ """Configuration file""" -MESSAGE_FILE = "message.txt" -BASIC_AUTH_FORCE = True +# Username and password for logging in to the site BASIC_AUTH_USERNAME = "username" BASIC_AUTH_PASSWORD = "password" + +# List of users. First value is the full name, second the email address +USERS = [ + ("Foobar", "foobar@example.com"), + ("Barbaz", "baz@example.net") + ]