From eff749ade5401aa36c7a3724659cbcbca29536ed Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 29 Jan 2021 16:24:35 +0100 Subject: [PATCH] Fix --- README.md | 4 +++- README_fr.md | 3 ++- check_process | 2 -- manifest.json | 2 +- scripts/change_url | 8 +++----- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6912025..b794368 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,9 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.* ## Overview -BookStack is a simple, self-hosted, easy-to-use platform for organising and storing information. +BookStack is a simple, self-hosted, easy-to-use platform for organising and storing information. It is an opinionated wiki system that provides a pleasant and simple out of the box experience. + +BookStack is built using PHP, on top of the Laravel framework and it uses MySQL to store data. **Shipped version:** 0.31.4 diff --git a/README_fr.md b/README_fr.md index f9571f3..0762a4b 100644 --- a/README_fr.md +++ b/README_fr.md @@ -23,7 +23,8 @@ BookStack est une plate-forme simple, auto-hébergée et facile à utiliser pour ## Configuration Login using the default admin details `admin@admin.com` with a password of `password`. You should change these details immediately after logging in for the first time. -How to configure this app: From an admin panel, a plain file with SSH, or any other way. + + * How to configure this app: From an admin panel, a plain file with SSH, or any other way. ## Documentation diff --git a/check_process b/check_process index e6005e6..21e8a5d 100644 --- a/check_process +++ b/check_process @@ -1,8 +1,6 @@ # See here for more informations # https://github.com/YunoHost/package_check#syntax-check_process-file -# Move this file from check_process.default to check_process when you have filled it. - ;; Test complet ; Manifest domain="domain.tld" (DOMAIN) diff --git a/manifest.json b/manifest.json index e7a08f8..51d9144 100644 --- a/manifest.json +++ b/manifest.json @@ -7,7 +7,7 @@ "fr": "Plateforme pour créer du contenu de documentation/wiki " }, "version": "0.31.4~ynh1", - "url": "https://github.com/BookStackApp/BookStack", + "url": "https://www.bookstackapp.com/", "license": "MIT", "maintainer": { "name": "liberodark", diff --git a/scripts/change_url b/scripts/change_url index 46650f3..037c9cf 100644 --- a/scripts/change_url +++ b/scripts/change_url @@ -28,11 +28,9 @@ ynh_script_progression --message="Loading installation settings..." --weight=1 # Needed for helper "ynh_add_nginx_config" final_path=$(ynh_app_setting_get --app=$app --key=final_path) - -# Add settings here as needed by your application -#db_name=$(ynh_app_setting_get --app=$app --key=db_name) -#db_user=$db_name -#db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd) +language=$(ynh_app_setting_get --app=$app --key=language) +db_name=$(ynh_app_setting_get --app=$app --key=db_name) +db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd) #================================================= # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP