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

Update manifest to YunoHost 2.4

Compliant with package_linter
This commit is contained in:
polytan02 2016-12-24 11:29:01 +00:00
parent 01f4e41792
commit 40b90c1d10

View file

@ -1,33 +1,63 @@
{ {
"name": "Framagames", "name": "COPS",
"id": "framagames", "id": "cops",
"packaging_format": 1,
"description": { "description": {
"en": "Set of games Framagames from Framasoft", "en": "Calibre OPDS (and HTML) PHP Server",
"fr": "Ensemble de jeux Framagames venant de Framasoft" "fr": "Calibre OPDS (et HTML) PHP Serveur"
}, },
"url": "https://github.com/YunoHost-Apps/cops_ynh",
"license": "free",
"maintainer": { "maintainer": {
"name": "polytan02", "name": "polytan02",
"email": "polytan02@mcgva.org" "email": "polytan02@mcgva.org"
}, },
"multi_instance": "true", "multi_instance": true,
"services": [
"nginx",
"php5-fpm"
],
"requirements": {
"yunohost": ">= 2.4.0"
},
"arguments": { "arguments": {
"install" : [ "install" : [
{ {
"name": "domain", "name": "domain",
"type": "domain",
"ask": { "ask": {
"en": "Choose a domain for your Webapp", "en": "Choose a domain for COPS library",
"fr": "Choisissez un domaine pour votre Webapp" "fr": "Choisissez un domaine pour votre bibliotheque COPS"
}, },
"example": "domain.org" "example": "domain.tld"
}, },
{ {
"name": "path", "name": "path",
"type": "path",
"ask": { "ask": {
"en": "Choose a path for your Webapp", "en": "Choose a path to access your COPS library",
"fr": "Choisissez un chemin pour votre Webapp" "fr": "Choisissez un chemin pour acceder a votre bibliotheque COPS"
}, },
"example": "/framagames", "example": "/cops",
"default": "/framagames" "default": "/cops"
},
{
"name": "calibre",
"ask": {
"en": "Indicate the location of Calibre library. DON'T store it in your /var/www/cops or it will be removed on next upgrade !!",
"fr": "Indiquez le chemin de votre bibliotheque Calibre. Ne la mettez pas dans /var/www/cops ou elle sera supprimée à la prochaine upgrade !!!"
},
"example": "/home/yunohost.app/owncloud/data/johndoe/files/eBooks",
"default": "/home/yunohost.app/owncloud/data/johndoe/files/eBooks"
},
{
"name": "runninguser",
"ask": {
"en": "Which system user is managing the Calibre folder ?",
"fr": "Quel utilisateur système gère le dossier Calibre ?"
},
"choices": ["www-data", "owncloud", "nextcloud"],
"default": "www-data"
}, },
{ {
"name": "is_public", "name": "is_public",
@ -37,6 +67,34 @@
}, },
"choices": ["Yes", "No"], "choices": ["Yes", "No"],
"default": "Yes" "default": "Yes"
},
{
"name": "basicauthcreate",
"ask": {
"en": "Create a basic auth access (only taken into account for a Public app) ? This is required if the app is public so that ereaders to access the OPDS server, for example",
"fr": "Créer un accès par authentification basique (Uniquement pris en compte pour une app Publique) ? Ceci est requis si votre bibliothèque est publique et que vous voulez accéder au serveur OPDS avec votre liseuse ou application mobile"
},
"choices": ["Yes", "No"],
"default": "Yes"
},
{
"name": "basicauthname",
"ask": {
"en": "Choose the login name to access the OPDS/HTML server (UNRELATED to YunoHost users)",
"fr": "Indiquez le nom d'utilisateur pour accéder au serveur OPDS/HTML (NON lié lié aux utilisateurs YunoHost)"
},
"example": "Gutenberg",
"default": "Gutenberg"
},
{
"name": "basicauthpass",
"type": "password",
"ask": {
"en": "Choose the password to access the OPDS/HTML server",
"fr": "Renseignez le mot de passe pour accéder au serveur OPDS/HTML"
},
"example": "knowledge is power",
"default": "knowledge is power"
} }
] ]
} }