1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gancio_ynh.git synced 2024-09-03 20:36:19 +02:00
Co-authored-by: OniriCorpe <oniricorpe@yunohost.org>
This commit is contained in:
lesion 2024-05-06 04:00:21 +02:00 committed by GitHub
parent ac42a6504d
commit e9a2d5f3b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 7 deletions

View file

@ -19,7 +19,7 @@ It shall NOT be edited by hand.
Gancio provide an online agenda open to contributions, and federated with the fediverse using ActivityPub.
**Shipped version:** v1.15.2~ynh1
**Shipped version:** 1.15.5~ynh1
**Demo:** <https://demo.gancio.org/>

View file

@ -6,7 +6,7 @@ name = "Gancio"
description.en = "Shared agenda for local communities, federated with the fediverse"
description.fr = "Agenda partagé pour les communautés locales, fédéré avec le fédiverse"
version = "v1.15.2~ynh1"
version = "1.15.5~ynh1"
maintainers = ["Lapineige"]
@ -57,9 +57,11 @@ ram.runtime = "50M"
[resources.sources]
[resources.sources.main]
url = "https://framagit.org/les/gancio/-/archive/v1.15.2/gancio-v1.15.2.tar.gz"
sha256 = "b024a5fc706bfd9d133023cbbf5319148f9aef6ece8da0edf81ee17b934c6b99"
url = "https://framagit.org/les/gancio/-/releases/v1.15.5/downloads/gancio.tgz"
sha256 = "34090ca1a132f983529fb7582dae9d9f707256c005721933c90ad1386fe238f0"
autoupdate.strategy = "latest_gitlab_release"
autoupdate.asset = "^gancio.tgz$"
[resources.system_user]
allow_email = true

View file

@ -4,7 +4,7 @@
# COMMON VARIABLES
#=================================================
nodejs_version=16
nodejs_version=18
#=================================================
# PERSONAL HELPERS

View file

@ -67,8 +67,8 @@ ynh_script_progression --message="Installing app dependencies and creating admin
pushd $install_dir
ynh_use_nodejs
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH yarn install # Install dependencies
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH nuxt build --modern=server # Build modern dependency
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH ./server/cli.js users create __ADMIN__ __PASSWORD__ --admin --config ./config.json
#ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH yarn build
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH ./server/cli.js users create __ADMIN__ __PASSWORD__ admin --config ./config.json
popd
#=================================================