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

57 lines
1.6 KiB
JSON
Raw Normal View History

2013-12-24 13:37:55 +01:00
{
"name": "Zerobin",
"id": "zerobin",
"packaging_format": 1,
2013-12-24 13:37:55 +01:00
"description": {
2014-04-06 23:23:59 +02:00
"en": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data",
"fr": "Un pastebin minimaliste, libre et où le serveur n'a aucune connaissance des données copiées"
2013-12-24 13:37:55 +01:00
},
2017-11-22 17:06:27 +01:00
"version": "1.1.1",
2014-12-31 18:14:36 +01:00
"url": "http://sebsauvage.net/wiki/doku.php?id=php:zerobin",
2017-09-02 22:57:43 +02:00
"license": "Zlib",
2014-12-31 18:14:36 +01:00
"maintainer": {
2013-12-24 13:37:55 +01:00
"name": "julien",
2014-12-31 18:14:36 +01:00
"email": "julien.malik@paraiso.me"
2013-12-24 13:37:55 +01:00
},
2017-09-02 22:57:43 +02:00
"requirements": {
"yunohost": ">= 2.7.2"
},
"multi_instance": true,
2015-11-22 16:22:15 +01:00
"services": [
"nginx",
"php5-fpm"
2015-11-22 16:22:15 +01:00
],
2013-12-24 13:37:55 +01:00
"arguments": {
"install" : [
{
"name": "domain",
2014-12-31 18:14:36 +01:00
"type": "domain",
2013-12-24 13:37:55 +01:00
"ask": {
2014-04-06 23:23:59 +02:00
"en": "Choose a domain for Zerobin",
"fr": "Choisissez un domaine pour Zerobin"
2013-12-24 13:37:55 +01:00
},
"example": "domain.org"
},
{
"name": "path",
2014-12-31 18:14:36 +01:00
"type": "path",
2013-12-24 13:37:55 +01:00
"ask": {
2014-04-06 23:23:59 +02:00
"en": "Choose a path for Zerobin",
"fr": "Choisissez un chemin pour Zerobin"
2013-12-24 13:37:55 +01:00
},
"example": "/zerobin",
"default": "/zerobin"
},
{
"name": "is_public",
"type": "boolean",
2013-12-24 13:37:55 +01:00
"ask": {
2014-04-06 23:23:59 +02:00
"en": "Is it a public Zerobin site ?",
"fr": "Est-ce un site public ?"
2013-12-24 13:37:55 +01:00
},
"default": "true"
2013-12-24 13:37:55 +01:00
}
]
}
}