You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every Flask app has a .config attribute to store configuration. Additionally, for MSColab we have mscolab_settings. I think this is redundant, we could just use app.config for everything that should be made globally available in the application in a key-value fashion.
This would also become important once there is not just a singular global APP instance, but the possibility to instantiate more then one Flask app, as each app needs its own configuration. This is something that mscolab_settings is not set up for ATM.
Every Flask app has a
.config
attribute to store configuration. Additionally, for MSColab we havemscolab_settings
. I think this is redundant, we could just useapp.config
for everything that should be made globally available in the application in a key-value fashion.This would also become important once there is not just a singular global APP instance, but the possibility to instantiate more then one Flask app, as each app needs its own configuration. This is something that
mscolab_settings
is not set up for ATM.This came up in #2499 (comment).
The text was updated successfully, but these errors were encountered: