2021-12-23 13:43:02 +01:00
|
|
|
"""Configuration file"""
|
|
|
|
|
# Username and password for logging in to the site
|
2021-12-19 20:51:04 +01:00
|
|
|
BASIC_AUTH_USERNAME = "{{ auth_user }}"
|
2021-12-19 20:14:23 +01:00
|
|
|
BASIC_AUTH_PASSWORD = "{{ auth_pass }}"
|
2021-12-23 13:43:02 +01:00
|
|
|
|
|
|
|
|
# List of users. First value is the full name, second the email address
|
|
|
|
|
USERS = [{% for user in users %}("{{ user.name }}", "{{ user.email }}"),{% endfor %}]
|