1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/privatebin_ynh.git synced 2024-09-03 20:15:56 +02:00
privatebin_ynh/manifest.json

49 lines
1.4 KiB
JSON
Raw Normal View History

2013-12-24 13:37:55 +01:00
{
2020-10-13 16:48:46 +02:00
"name": "PrivateBin",
"id": "privatebin",
"packaging_format": 1,
2013-12-24 13:37:55 +01:00
"description": {
2020-10-09 17:41:34 +02:00
"en": "Minimalist pastebin where the server has zero knowledge of pasted data",
"fr": "Pastebin minimaliste où le serveur n'a aucune connaissance des données copiées"
2013-12-24 13:37:55 +01:00
},
2021-04-05 17:52:05 +02:00
"version": "1.3.5~ynh1",
2020-10-09 18:06:47 +02:00
"url": "https://github.com/PrivateBin/PrivateBin",
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": {
2021-03-20 13:53:03 +01:00
"yunohost": ">= 4.1.7"
2017-09-02 22:57:43 +02:00
},
"multi_instance": true,
2015-11-22 16:22:15 +01:00
"services": [
"nginx",
"php7.3-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
"example": "domain.org"
},
{
"name": "path",
2014-12-31 18:14:36 +01:00
"type": "path",
2020-10-13 16:48:46 +02:00
"example": "/privatebin",
"default": "/privatebin"
2013-12-24 13:37:55 +01:00
},
{
"name": "is_public",
"type": "boolean",
2020-03-08 20:09:34 +01:00
"help": {
"en": "If private, only YunoHost users can create a paste, but everyone can read it.",
"fr": "Si privé, seul les utilisateurs YunoHost peuvent créer un paste, mais tout le monde peut lire."
},
2019-05-03 20:04:21 +02:00
"default": true
2013-12-24 13:37:55 +01:00
}
]
}
}