Files
autoreply-editor/config.sample.py

12 lines
302 B
Python
Raw Normal View History

2021-05-19 09:17:41 +02:00
"""Configuration file"""
2021-12-23 13:32:58 +01:00
# Username and password for logging in to the site
2021-05-19 09:17:41 +02:00
BASIC_AUTH_USERNAME = "username"
BASIC_AUTH_PASSWORD = "password"
2021-12-23 13:32:58 +01:00
# List of users. First value is the full name, second the email address
USERS = [
("Foobar", "foobar@example.com"),
("Barbaz", "baz@example.net")
]