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

80 lines
2.3 KiB
JSON
Raw Normal View History

2021-07-10 17:59:22 +02:00
{
2021-07-14 16:10:15 +02:00
"name": "my_capsule",
"id": "my_capsule",
2021-07-10 17:59:22 +02:00
"packaging_format": 1,
"description": {
2023-08-15 10:13:13 +02:00
"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"
2021-07-10 17:59:22 +02:00
},
2023-08-15 10:16:18 +02:00
"version": "1.4.1~ynh2",
2021-07-16 13:50:02 +02:00
"url": "https://tildegit.org/Sbgodin/htmgem",
2021-07-10 17:59:22 +02:00
"upstream": {
2022-07-29 20:46:20 +02:00
"license": "AGPL-3.0-or-later",
2021-07-14 16:10:15 +02:00
"demo": "https://gmi.sbgodin.fr/htmgem/",
"code": "https://tildegit.org/Sbgodin/htmgem"
2021-07-10 17:59:22 +02:00
},
2022-07-29 20:46:20 +02:00
"license": "AGPL-3.0-or-later",
2021-07-10 17:59:22 +02:00
"maintainer": {
2021-07-14 16:10:15 +02:00
"name": "yalh76"
2021-07-10 17:59:22 +02:00
},
"requirements": {
2023-08-15 10:16:18 +02:00
"yunohost": ">= 11.2"
2021-07-10 17:59:22 +02:00
},
"multi_instance": true,
"services": [
"nginx",
"php7.4-fpm",
2021-07-10 17:59:22 +02:00
"mysql"
],
"arguments": {
2022-07-29 20:46:20 +02:00
"install": [
2021-07-10 17:59:22 +02:00
{
"name": "domain",
2022-07-29 20:46:20 +02:00
"type": "domain"
2021-07-10 17:59:22 +02:00
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
},
2022-07-29 20:46:20 +02:00
{
"name": "admin",
"type": "user"
},
2021-07-10 17:59:22 +02:00
{
"name": "password",
"type": "password",
2022-07-30 07:44:47 +02:00
"optional": true
2021-07-14 16:10:15 +02:00
},
{
"name": "with_sftp",
"type": "boolean",
"ask": {
"en": "Do you need a SFTP access?",
"fr": "Avez-vous besoin d'un accès SFTP ?"
},
"default": true
},
{
"name": "with_mysql",
"type": "boolean",
"ask": {
"en": "Do you need a MySQL database?",
"fr": "Avez-vous besoin d'une base de données MySQL ?"
},
"default": false
2021-07-10 17:59:22 +02:00
}
]
}
}