doc: update flask doc link

This commit is contained in:
Éloi Rivard 2024-03-16 13:47:49 +01:00
parent b08c0303f5
commit edebf189dd
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184
8 changed files with 8 additions and 8 deletions

View file

@ -1,5 +1,5 @@
# All the Flask configuration values can be used: # All the Flask configuration values can be used:
# https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values # https://flask.palletsprojects.com/en/3.0.0/config/#builtin-configuration-values
# The flask secret key for cookies. You MUST change this. # The flask secret key for cookies. You MUST change this.
SECRET_KEY = "change me before you go in production" SECRET_KEY = "change me before you go in production"

View file

@ -1,5 +1,5 @@
# All the Flask configuration values can be used: # All the Flask configuration values can be used:
# https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values # https://flask.palletsprojects.com/en/3.0.x/config/#builtin-configuration-values
# The flask secret key for cookies. You MUST change this. # The flask secret key for cookies. You MUST change this.
SECRET_KEY = "change me before you go in production" SECRET_KEY = "change me before you go in production"

View file

@ -1,5 +1,5 @@
# All the Flask configuration values can be used: # All the Flask configuration values can be used:
# https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values # https://flask.palletsprojects.com/en/3.0.x/config/#builtin-configuration-values
# The flask secret key for cookies. You MUST change this. # The flask secret key for cookies. You MUST change this.
SECRET_KEY = "change me before you go in production" SECRET_KEY = "change me before you go in production"

View file

@ -1,5 +1,5 @@
# All the Flask configuration values can be used: # All the Flask configuration values can be used:
# https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values # https://flask.palletsprojects.com/en/3.0.x/config/#builtin-configuration-values
# The flask secret key for cookies. You MUST change this. # The flask secret key for cookies. You MUST change this.
SECRET_KEY = "change me before you go in production" SECRET_KEY = "change me before you go in production"

View file

@ -1,5 +1,5 @@
# All the Flask configuration values can be used: # All the Flask configuration values can be used:
# https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values # https://flask.palletsprojects.com/en/3.0.x/config/#builtin-configuration-values
# The flask secret key for cookies. You MUST change this. # The flask secret key for cookies. You MUST change this.
SECRET_KEY = "change me before you go in production" SECRET_KEY = "change me before you go in production"

View file

@ -1,5 +1,5 @@
# All the Flask configuration values can be used: # All the Flask configuration values can be used:
# https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values # https://flask.palletsprojects.com/en/3.0.x/config/#builtin-configuration-values
# The flask secret key for cookies. You MUST change this. # The flask secret key for cookies. You MUST change this.
SECRET_KEY = "change me before you go in production" SECRET_KEY = "change me before you go in production"

View file

@ -1,5 +1,5 @@
# All the Flask configuration values can be used: # All the Flask configuration values can be used:
# https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values # https://flask.palletsprojects.com/en/3.0.x/config/#builtin-configuration-values
# The flask secret key for cookies. You MUST change this. # The flask secret key for cookies. You MUST change this.
SECRET_KEY = "change me before you go in production" SECRET_KEY = "change me before you go in production"

View file

@ -17,7 +17,7 @@ Sections
Miscellaneous Miscellaneous
------------- -------------
Canaille is based on Flask, so any `flask configuration <https://flask.palletsprojects.com/en/2.3.x/config/#builtin-configuration-values>`_ option will be usable with canaille: Canaille is based on Flask, so any `flask configuration <https://flask.palletsprojects.com/en/3.0.x/config/#builtin-configuration-values>`_ option will be usable with canaille:
:SECRET_KEY: :SECRET_KEY:
**Required.** The Flask secret key. You should set a random string here. **Required.** The Flask secret key. You should set a random string here.