mirror of
https://github.com/YunoHost-Apps/shiori_ynh.git
synced 2024-09-03 20:26:17 +02:00
commit
04b2d4b3ba
6 changed files with 14 additions and 9 deletions
|
@ -28,7 +28,7 @@ Shiori is a simple bookmarks manager written in Go language. Intended as a simpl
|
|||
- Where possible, by default shiori will download a static copy of the webpage in simple text and HTML format, which later can be used as an offline archive for that page.
|
||||
|
||||
|
||||
**Shipped version:** 1.5.5~ynh3
|
||||
**Shipped version:** 1.5.5~ynh4
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ Shiori est un simple gestionnaire de signets écrit en langage Go. Conçu comme
|
|||
- Dans la mesure du possible, shiori téléchargera par défaut une copie statique de la page Web au format texte simple et HTML, qui pourra ensuite être utilisée comme archive hors ligne pour cette page.
|
||||
|
||||
|
||||
**Version incluse :** 1.5.5~ynh3
|
||||
**Version incluse :** 1.5.5~ynh4
|
||||
|
||||
## Captures d’écran
|
||||
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
The default account is `shiori` with password `gopher`. It is removed once another 'owner' account is created.
|
||||
|
||||
- username: `shiori`
|
||||
- password: `gopher`
|
|
@ -1,4 +1 @@
|
|||
Le compte par défaut est `shiori` avec le mot de passe `gopher`. Il est supprimé une fois qu'un autre compte « propriétaire » est créé.
|
||||
|
||||
- nom d'utilisateur : `shiori`
|
||||
- mot de passe : `gopher`
|
|
@ -5,7 +5,7 @@ name = "Shiori"
|
|||
description.en = "Simple bookmark manager"
|
||||
description.fr = "Gestionnaire de liens simple"
|
||||
|
||||
version = "1.5.5~ynh3"
|
||||
version = "1.5.5~ynh4"
|
||||
|
||||
maintainers = ["eric_G"]
|
||||
|
||||
|
@ -19,8 +19,11 @@ code = "https://github.com/go-shiori/shiori"
|
|||
yunohost = ">= 11.2"
|
||||
architectures = ["amd64", "arm64", "armhf"]
|
||||
multi_instance = true
|
||||
|
||||
ldap = false
|
||||
|
||||
sso = false
|
||||
|
||||
disk = "50M"
|
||||
ram.build = "50M"
|
||||
ram.runtime = "50M"
|
||||
|
|
|
@ -25,6 +25,14 @@ ynh_script_progression --message="Updating NGINX web server configuration..." --
|
|||
|
||||
ynh_change_url_nginx_config
|
||||
|
||||
#=================================================
|
||||
# SPECIFIC MODIFICATIONS
|
||||
#=================================================
|
||||
ynh_script_progression --message="Updating systemd service..." --weight=1
|
||||
|
||||
ynh_replace_string --match_string="--webroot $old_path" --replace_string="--webroot $new_path" --target_file="/etc/systemd/system/$app.service"
|
||||
systemctl daemon-reload
|
||||
|
||||
#=================================================
|
||||
# GENERIC FINALISATION
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue