Version 1.2.16: Verbesserte Suchfunktion und Reset-Buttons
This commit is contained in:
2
app.py
2
app.py
@@ -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)
|
||||
|
Reference in New Issue
Block a user