From 9a63402a2ae3e2ffe5da25ec80fe77a886bda12c Mon Sep 17 00:00:00 2001 From: Vincent LAURENT Date: Sat, 18 Mar 2023 00:54:26 +0100 Subject: [PATCH] Documentation precision in the README and in the config.ini file and use of ";" instead of "#" for comments --- README.md | 5 +++++ config/config.ini.example | 9 ++++++--- config/config.ini.tpl | 8 ++++++-- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8182be4..35e5fd7 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,11 @@ chown www-data /path/to/folder/to/store/pdf Pour desactiver le mode Organiser, ajouter `DISABLE_ORGANIZATION=true` dans le fichier `config/config.ini`. +### Cacher ou modifier le lien de PDF de démo + +Pour cacher le lien de pdf de démo, ajouter `PDF_DEMO_LINK=false` dans le fichier +`config/config.ini`. + ## Mise à jour La dernière version stable est sur la branche `master`, pour la mise à jour il suffit de récupérer les dernières modifications : diff --git a/config/config.ini.example b/config/config.ini.example index 5a4000e..ee6842a 100644 --- a/config/config.ini.example +++ b/config/config.ini.example @@ -1,8 +1,11 @@ [globals] -# Path to which stored pdf to activate the mode of sharing a signature to several. -# To deactivate this mode, simply do not configure it or leave it empty +; Path to which stored pdf to activate the mode of sharing a signature to several. +; To deactivate this mode, simply do not configure it or leave it empty PDF_STORAGE_PATH=/path/to/folder -DISABLE_ORGANIZATION=false + +; Disable organization tab and routes +;DISABLE_ORGANIZATION=false + ; Manage demo link pdf : true (by default, show), false (hide), or custom link ;PDF_DEMO_LINK=true diff --git a/config/config.ini.tpl b/config/config.ini.tpl index 895608f..d515b99 100644 --- a/config/config.ini.tpl +++ b/config/config.ini.tpl @@ -1,7 +1,11 @@ [globals] -# Path to which stored pdf to activate the mode of sharing a signature to several. -# To deactivate this mode, simply do not configure it or leave it empty +; Path to which stored pdf to activate the mode of sharing a signature to several. +; To deactivate this mode, simply do not configure it or leave it empty PDF_STORAGE_PATH=${PDF_STORAGE_PATH} + +; Disable organization tab and routes DISABLE_ORGANIZATION=${DISABLE_ORGANIZATION} + +; Manage demo link pdf : true (by default, show), false (hide), or custom link PDF_DEMO_LINK=${PDF_DEMO_LINK}