Added events system
This commit is contained in:
1
app.py
1
app.py
@@ -25,6 +25,7 @@ def create_app():
|
||||
app.config['SECRET_KEY'] = os.getenv('SECRET_KEY', 'your-secure-secret-key-here')
|
||||
app.config['UPLOAD_FOLDER'] = os.path.join(app.root_path, 'static', 'uploads')
|
||||
app.config['CSS_VERSION'] = os.getenv('CSS_VERSION', '1.0.0') # Add CSS version for cache busting
|
||||
app.config['JS_VERSION'] = os.getenv('JS_VERSION', '1.0.0') # Add JS version for cache busting
|
||||
|
||||
# Initialize extensions
|
||||
db.init_app(app)
|
||||
|
||||
Reference in New Issue
Block a user