1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cops_ynh.git synced 2024-09-03 18:25:57 +02:00
cops_ynh/manifest.json

69 lines
2.2 KiB
JSON
Raw Normal View History

2016-12-21 18:31:37 +01:00
{
"name": "COPS",
2016-12-22 01:00:35 +01:00
"id": "cops",
2016-12-21 18:31:37 +01:00
"packaging_format": 1,
"description": {
"en": "Calibre OPDS (and HTML) PHP Server",
"fr": "Calibre OPDS (et HTML) PHP Serveur"
},
2021-08-04 12:48:53 +02:00
"url": "https://blog.slucas.fr/projects/calibre-opds-php-server/",
2021-08-04 12:23:13 +02:00
"license": "GPL-2.0",
2021-08-04 12:48:53 +02:00
"upstream": {
"license": "GPL-2.0",
"website": "https://blog.slucas.fr/projects/calibre-opds-php-server/",
"demo": "http://cops-demo.slucas.fr/index.php",
"code": "https://github.com/seblucas/cops"
},
2016-12-21 18:31:37 +01:00
"maintainer": {
"name": "polytan02",
"email": "polytan02@mcgva.org"
},
"multi_instance": true,
"services": [
"nginx",
2021-08-04 12:23:13 +02:00
"php7.3-fpm"
2016-12-21 18:31:37 +01:00
],
"requirements": {
2021-08-04 12:23:13 +02:00
"yunohost": ">= 4.2.0"
2016-12-21 18:31:37 +01:00
},
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
2016-12-23 18:54:37 +01:00
"example": "domain.tld"
2016-12-21 18:31:37 +01:00
},
{
"name": "path",
"type": "path",
2016-12-23 22:30:02 +01:00
"example": "/cops",
"default": "/cops"
},
2021-08-04 12:33:06 +02:00
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
},
{
2016-12-23 23:02:50 +01:00
"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"
},
2016-12-21 18:31:37 +01:00
{
"name": "is_public",
2021-08-04 12:23:13 +02:00
"type": "boolean",
"default": true
2016-12-21 18:31:37 +01:00
}
]
}
}