Files
autoreply-editor/config.sample.py
2021-12-23 13:32:58 +01:00

12 lines
302 B
Python

"""Configuration file"""
# 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")
]