1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/focalboard_ynh.git synced 2024-09-03 18:36:19 +02:00

Merge pull request #66 from YunoHost-Apps/testing

Testing
This commit is contained in:
eric_G 2023-09-27 07:07:38 +02:00 committed by GitHub
commit 33dcdfd430
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 13 additions and 16 deletions

View file

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Focalboard is a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view.
**Shipped version:** 7.9.4~ynh1
**Shipped version:** 7.11.3~ynh1
## Screenshots

View file

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
Focalboard est un outil de gestion de projet qui aide à définir, organiser, suivre et gérer le travail entre les équipes, à l'aide d'une vue de tableau kanban familière.
**Version incluse :** 7.9.4~ynh1
**Version incluse :** 7.11.3~ynh1
## Captures décran

View file

@ -3,7 +3,7 @@ location ~ /ws/* {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
client_max_body_size 50M;
proxy_set_header Host $http_host;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
@ -22,7 +22,7 @@ location / {
client_max_body_size 50M;
proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header Connection "";
proxy_set_header Host $http_host;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;

View file

@ -5,7 +5,7 @@ name = "Focalboard"
description.en = "Kanban project management software"
description.fr = "Logiciel de gestion de projet Kanban"
version = "7.9.4~ynh1"
version = "7.11.3~ynh1"
maintainers = ["eric_G"]
@ -17,7 +17,7 @@ userdoc = "https://www.focalboard.com/guide/user/"
code = "https://github.com/mattermost/focalboard"
[integration]
yunohost = ">= 11.1.19"
yunohost = ">= 11.2"
architectures = ["amd64"]
multi_instance = false
ldap = false
@ -29,11 +29,8 @@ ram.runtime = "50M"
[install]
[install.domain]
type = "domain"
full_domain = true
[install.init_main_permission]
help.en = "If enabled, Focalboard will be accessible by people who do not have an account. This can be changed later via the webadmin."
help.fr = "Si cette case est cochée, Focalboard sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
type = "group"
default = "visitors"
@ -41,8 +38,8 @@ ram.runtime = "50M"
[resources.sources]
[resources.sources.main]
url = "https://github.com/mattermost/focalboard/releases/download/v7.9.4/focalboard-server-linux-amd64.tar.gz"
sha256 = "3c04b0b21e499f4dc90c4d792748dcb08fa5f6ce17c318c8d2e28c2ed79fc9ba"
url = "https://github.com/mattermost/focalboard/releases/download/v7.11.3/focalboard-server-linux-amd64.tar.gz"
sha256 = "3515ef5b90fe2d958b8869e0191915f0ca46ee4e6950e16c9647423981ebeecd"
[resources.ports]

View file

@ -15,7 +15,7 @@ source /usr/share/yunohost/helpers
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=3
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
#=================================================
# MODIFY URL IN NGINX CONF
@ -31,7 +31,7 @@ ynh_change_url_nginx_config
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=4
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
#=================================================
# END OF SCRIPT

View file

@ -57,7 +57,7 @@ chown $app:$app "$install_dir/config.json"
ynh_script_progression --message="Starting a systemd service..." --weight=1
# Start a systemd service
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
#=================================================
# END OF SCRIPT

View file

@ -57,7 +57,7 @@ yunohost service add $app --description="Self-hosted kanban board" --log="/var/l
#=================================================
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
ynh_systemd_action --service_name=nginx --action=reload

View file

@ -91,7 +91,7 @@ chown $app:$app "$install_dir/config.json"
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
#=================================================
# END OF SCRIPT