Version 1.2.16: Verbesserte Suchfunktion und Reset-Buttons

This commit is contained in:
2025-03-21 12:42:18 +01:00
parent 9922c0ae9d
commit 4d5a7b4f5e
2 changed files with 4 additions and 4 deletions

2
app.py
View File

@@ -13,7 +13,7 @@ import sqlite3
from functools import wraps
app = Flask(__name__, static_folder='static')
app.config['SECRET_KEY'] = os.getenv('SECRET_KEY', 'dev')
app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY', 'dev')
app.config['ALLOWED_IP_RANGES'] = os.getenv('ALLOWED_IP_RANGES', '192.168.0.0/16,10.0.0.0/8').split(',')
app.config['VERSION'] = '1.2.16'
logging.basicConfig(level=logging.INFO)