mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 14:04:20 +01:00
Add SQLALCHEMY_ENGINE_OPTIONS with a slightly higher default max_overflow
This commit is contained in:
@@ -231,6 +231,11 @@ class Config(object):
|
|||||||
|
|
||||||
SERVER_SENT_EVENTS:
|
SERVER_SENT_EVENTS:
|
||||||
Specifies whether or not to enable to server-sent events based Notifications system.
|
Specifies whether or not to enable to server-sent events based Notifications system.
|
||||||
|
|
||||||
|
SQLALCHEMY_ENGINE_OPTIONS:
|
||||||
|
A dictionary of keyword args to send to the underlying SQLAlchemy create_engine() call.
|
||||||
|
https://docs.sqlalchemy.org/en/13/core/engines.html#sqlalchemy.create_engine
|
||||||
|
https://flask-sqlalchemy.palletsprojects.com/en/2.x/config/#configuration-keys
|
||||||
"""
|
"""
|
||||||
REVERSE_PROXY = os.getenv("REVERSE_PROXY") or False
|
REVERSE_PROXY = os.getenv("REVERSE_PROXY") or False
|
||||||
TEMPLATES_AUTO_RELOAD = not os.getenv("TEMPLATES_AUTO_RELOAD") # Defaults True
|
TEMPLATES_AUTO_RELOAD = not os.getenv("TEMPLATES_AUTO_RELOAD") # Defaults True
|
||||||
@@ -241,6 +246,9 @@ class Config(object):
|
|||||||
UPDATE_CHECK = not os.getenv("UPDATE_CHECK") # Defaults True
|
UPDATE_CHECK = not os.getenv("UPDATE_CHECK") # Defaults True
|
||||||
APPLICATION_ROOT = os.getenv("APPLICATION_ROOT") or "/"
|
APPLICATION_ROOT = os.getenv("APPLICATION_ROOT") or "/"
|
||||||
SERVER_SENT_EVENTS = not os.getenv("SERVER_SENT_EVENTS") # Defaults True
|
SERVER_SENT_EVENTS = not os.getenv("SERVER_SENT_EVENTS") # Defaults True
|
||||||
|
SQLALCHEMY_ENGINE_OPTIONS = {
|
||||||
|
"max_overflow": int(os.getenv("SQLALCHEMY_MAX_OVERFLOW", 20)),
|
||||||
|
}
|
||||||
|
|
||||||
"""
|
"""
|
||||||
=== OAUTH ===
|
=== OAUTH ===
|
||||||
|
|||||||
Reference in New Issue
Block a user