1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/my_capsule_ynh.git synced 2024-09-03 19:46:21 +02:00

Merge pull request #15 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2023-08-15 11:43:08 +02:00 committed by GitHub
commit 5d96f45210
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 7 deletions

View file

@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Custom Gemini capsule with SFTP access and HtmGem to make your Gemini pages reachable on the web. Custom Gemini capsule with SFTP access and HtmGem to make your Gemini pages reachable on the web.
**Shipped version:** 1.4.1~ynh1 **Shipped version:** 1.4.1~ynh2
**Demo:** https://gmi.sbgodin.fr/htmgem/ **Demo:** https://gmi.sbgodin.fr/htmgem/

View file

@ -19,7 +19,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
Capsule Gemini personnalisée avec accès SFTP et HtmGem pour rendre vos pages Gemini accessibles sur le web. Capsule Gemini personnalisée avec accès SFTP et HtmGem pour rendre vos pages Gemini accessibles sur le web.
**Version incluse :** 1.4.1~ynh1 **Version incluse :** 1.4.1~ynh2
**Démo :** https://gmi.sbgodin.fr/htmgem/ **Démo :** https://gmi.sbgodin.fr/htmgem/

View file

@ -3,9 +3,10 @@
"id": "my_capsule", "id": "my_capsule",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Custom Gemini capsule with SFTP access and HtmGem to make your Gemini pages reachable on the web." "en": "Custom Gemini capsule with SFTP access and HtmGem to make your Gemini pages reachable on the web",
"fr": "Capsule Gemini personnalisée avec accès SFTP et HtmGem pour rendre vos pages Gemini accessibles sur le web"
}, },
"version": "1.4.1~ynh1", "version": "1.4.1~ynh2",
"url": "https://tildegit.org/Sbgodin/htmgem", "url": "https://tildegit.org/Sbgodin/htmgem",
"upstream": { "upstream": {
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
@ -17,12 +18,12 @@
"name": "yalh76" "name": "yalh76"
}, },
"requirements": { "requirements": {
"yunohost": ">= 4.3.0" "yunohost": ">= 11.2"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [
"nginx", "nginx",
"php7.3-fpm", "php7.4-fpm",
"mysql" "mysql"
], ],
"arguments": { "arguments": {

View file

@ -4,8 +4,10 @@
# COMMON VARIABLES # COMMON VARIABLES
#================================================= #=================================================
YNH_PHP_VERSION="7.4"
# dependencies used by the app # dependencies used by the app
pkg_dependencies="php$YNH_DEFAULT_PHP_VERSION-fpm php$YNH_DEFAULT_PHP_VERSION-mbstring" pkg_dependencies="php${YNH_PHP_VERSION}-fpm php${YNH_PHP_VERSION}-mbstring"
app_dependencies="gemserv" app_dependencies="gemserv"
#================================================= #=================================================