Version 1.2.17: Optimierte Datenbankverbindungen und verbesserte Indizes

This commit is contained in:
2025-03-21 12:56:48 +01:00
parent 16bd7ec544
commit 1cf8fbb91d
2 changed files with 7 additions and 1 deletions

2
app.py
View File

@@ -14,7 +14,7 @@ import threading
app = Flask(__name__, static_folder='static')
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'
app.config['VERSION'] = '1.2.17'
app.config['DATABASE'] = 'data/customers.db'
app.config['DATABASE_TIMEOUT'] = 20
app.config['DATABASE_POOL_SIZE'] = 5