Merge pull request #70 from PhoenixTwoFive/64-defaults-for-entry-limitation-too-high

lowered maxqueue to 10 and participant quota to 2
This commit is contained in:
Phillip Kühne 2023-06-30 15:34:56 +02:00 committed by GitHub
commit c21e6300e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,8 +91,8 @@ def setup_config(app: Flask):
exit()
default_config = {'username': initial_username,
'password': initial_password,
'entryquota': 3,
'maxqueue': 20,
'entryquota': 2,
'maxqueue': 10,
'entries_allowed': 1,
'theme': 'default.css'}
for key, value in default_config.items():