We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4451a49 commit dbf55aeCopy full SHA for dbf55ae
config.py
@@ -2,7 +2,9 @@ class Config:
2
"""Set Flask configuration vars from .env file."""
3
4
# General Config
5
- SECRET_KEY = 'super_secret_key'
+ SECRET_KEY = 'super_secret_key' # Setting it as an environment variable is recommended
6
7
# Flask-Session
8
- SESSION_TYPE = 'filesystem'
+ SESSION_TYPE = 'filesystem' # You can choose between Redis, SqlAlchemy, MongoDB or memcachec
9
+ # There are other configuration options which can be used for a more customized application
10
+ # More information about this can be found here : https://pythonhosted.org/Flask-Session/
0 commit comments