From edebf189ddea54f5df7258135cbccabd13540134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Sat, 16 Mar 2024 13:47:49 +0100 Subject: [PATCH] doc: update flask doc link --- canaille/config.sample.toml | 2 +- demo/conf-docker/canaille-ldap.toml | 2 +- demo/conf-docker/canaille-memory.toml | 2 +- demo/conf-docker/canaille-sql.toml | 2 +- demo/conf/canaille-ldap.toml | 2 +- demo/conf/canaille-memory.toml | 2 +- demo/conf/canaille-sql.toml | 2 +- doc/configuration.rst | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/canaille/config.sample.toml b/canaille/config.sample.toml index 133894ad..687d17c8 100644 --- a/canaille/config.sample.toml +++ b/canaille/config.sample.toml @@ -1,5 +1,5 @@ # 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. SECRET_KEY = "change me before you go in production" diff --git a/demo/conf-docker/canaille-ldap.toml b/demo/conf-docker/canaille-ldap.toml index 756a0253..1a158e3e 100644 --- a/demo/conf-docker/canaille-ldap.toml +++ b/demo/conf-docker/canaille-ldap.toml @@ -1,5 +1,5 @@ # 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. SECRET_KEY = "change me before you go in production" diff --git a/demo/conf-docker/canaille-memory.toml b/demo/conf-docker/canaille-memory.toml index fbfe4a92..c1623a9f 100644 --- a/demo/conf-docker/canaille-memory.toml +++ b/demo/conf-docker/canaille-memory.toml @@ -1,5 +1,5 @@ # 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. SECRET_KEY = "change me before you go in production" diff --git a/demo/conf-docker/canaille-sql.toml b/demo/conf-docker/canaille-sql.toml index c787f861..2d2de7fd 100644 --- a/demo/conf-docker/canaille-sql.toml +++ b/demo/conf-docker/canaille-sql.toml @@ -1,5 +1,5 @@ # 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. SECRET_KEY = "change me before you go in production" diff --git a/demo/conf/canaille-ldap.toml b/demo/conf/canaille-ldap.toml index 04cfcec9..67790cbe 100644 --- a/demo/conf/canaille-ldap.toml +++ b/demo/conf/canaille-ldap.toml @@ -1,5 +1,5 @@ # 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. SECRET_KEY = "change me before you go in production" diff --git a/demo/conf/canaille-memory.toml b/demo/conf/canaille-memory.toml index 0e6f14ec..cd51fafd 100644 --- a/demo/conf/canaille-memory.toml +++ b/demo/conf/canaille-memory.toml @@ -1,5 +1,5 @@ # 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. SECRET_KEY = "change me before you go in production" diff --git a/demo/conf/canaille-sql.toml b/demo/conf/canaille-sql.toml index 3756fffd..ab7e4b2e 100644 --- a/demo/conf/canaille-sql.toml +++ b/demo/conf/canaille-sql.toml @@ -1,5 +1,5 @@ # 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. SECRET_KEY = "change me before you go in production" diff --git a/doc/configuration.rst b/doc/configuration.rst index 2462555c..392354da 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -17,7 +17,7 @@ Sections Miscellaneous ------------- -Canaille is based on Flask, so any `flask configuration `_ option will be usable with canaille: +Canaille is based on Flask, so any `flask configuration `_ option will be usable with canaille: :SECRET_KEY: **Required.** The Flask secret key. You should set a random string here.