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

50 lines
1.4 KiB
JSON
Raw Normal View History

2020-08-17 17:29:58 +02:00
{
"name": "Droppy",
"id": "droppy",
"packaging_format": 1,
"description": {
"en": "Self-hosted file storage server",
"fr": "Serveur de stockage de fichiers auto-hébergé"
},
Testing (#22) * upgrade to v.12.1.0 * Update nginx.conf * Upgrade to 12.2.0 (#3) * Upgrade to 12.2.0 * Add maintainer * Fix issue #5 (#6) Explicity set the correct owner and group for the data dir during backup restore Co-authored-by: Rasmus Mattsson Kallio <rasmus@mallio.se> * Version bump * Fix linter warnings * Update manifest.json * Update manifest.json * Set badge in SVG * Finding an available port * Small fixes * Small fix * Cleaning up * Update manifest.json * Update manifest.json * Protect config file * Update manifest.json * [autopatch] Update issue and PR templates (#13) Co-authored-by: Yunohost-Bot <> * Add templates * fix (#16) * Update manifest.json * Auto-update README * Update scripts/install Co-authored-by: tituspijean <tituspijean@outlook.com> * Update scripts/upgrade Co-authored-by: tituspijean <tituspijean@outlook.com> * Update upgrade * Update check_process * Update check_process * Update manifest.json * Update check_process * Update manifest.json * Auto-update README * Enhance README (#19) * Rename DESCRITION.md to DESCRIPTION.md Co-authored-by: Yunohost-Bot <> * Auto-update README * bump version * Auto-update README * Fix * Update manifest.json * Auto-update README Co-authored-by: Rasmus MK <71251695+rasmus-mk@users.noreply.github.com> Co-authored-by: Rasmus Mattsson Kallio <rasmus@mallio.se> Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-04-24 14:42:25 +02:00
"version": "12.2.0~ynh10",
2020-08-17 17:29:58 +02:00
"url": "https://github.com/silverwind/droppy",
2021-11-07 23:19:46 +01:00
"upstream": {
"license": "BSD-2-Clause",
"code": "https://github.com/silverwind/droppy"
},
2020-08-17 17:29:58 +02:00
"license": "BSD-2-Clause",
"maintainer": {
"name": "eric_G"
2020-08-17 17:29:58 +02:00
},
"requirements": {
2021-11-26 22:03:49 +01:00
"yunohost": ">= 4.3.0"
2020-08-17 17:29:58 +02:00
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "domain",
2021-11-07 23:19:46 +01:00
"type": "domain"
2020-08-17 17:29:58 +02:00
},
{
"name": "path",
"type": "path",
"example": "/droppy",
"default": "/droppy"
},
{
"name": "is_public",
"type": "boolean",
"help": {
"en": "If enabled, Droppy will be accessible by people who do not have an account. This can be changed later via the webadmin.",
"fr": "Si cette case est cochée, Droppy sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
},
"default": true
}
]
}
}