You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# logout timeout for Terminal mode in seconds, set to none to disable
89
+
TERMINAL_LOGOUT_TIMEOUT=30
90
+
# Second-Limit for canceling a revenue
91
+
QUICK_CANCEL_SEC=60
92
+
# Cooldown between multiple purchases in seconds. If zero, there's no cooldown.
93
+
PURCHASE_COOLDOWN=0.0
94
+
# Option, whether purchases with no cost must be verified
95
+
VERIFY_FREE_PURCHASES=False
96
+
# Optional text, that is displayed during confirmation
97
+
VERIFY_FREE_PURCHASES_NOTE=None
98
+
# Display bank data
99
+
BANK_DATA=None
100
+
# Amount of favorite products which should get highlighted
101
+
FAVORITES_DISPLAY=3
102
+
# Timespan for calculation of favorite products in Days
103
+
FAVORITES_DAYS=100
104
+
# Disable user sign up
105
+
ALLOW_SIGNUP=False
106
+
# Disable the card reader by default
107
+
ENABLE_CARD_READER=False
108
+
# Verify the send card reader device id
109
+
VERIFY_CARD_READER=False
110
+
# List of strings of verified readers. Per default are no card readers authorized.
111
+
VERIFIED_CARD_READERS=[]
112
+
# Display prices and a balance instead of a count
113
+
SHOW_BALANCE_AND_PRICE=True
114
+
# Allow purchases over budget
115
+
ALLOW_NEGATIVE_BALANCES=False
102
116
```
103
117
104
118
You can use additional standard configuration values from the [Flask](https://flask.palletsprojects.com/en/2.0.x/), [Flask-Login](https://flask-login.readthedocs.io/en/latest/)
0 commit comments