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

70 lines
2.1 KiB
JSON
Raw Normal View History

2021-08-13 15:42:21 +02:00
{
2021-08-13 21:43:07 +02:00
"name": "ArchiveBox",
2021-08-13 15:42:21 +02:00
"id": "example",
"packaging_format": 1,
"description": {
2021-08-13 21:43:07 +02:00
"en": "ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view sites you want to preserve offline.",
"fr": ""
2021-08-13 15:42:21 +02:00
},
"version": "1.0~ynh1",
2021-08-13 21:43:07 +02:00
"url": "https://archivebox.io/",
2021-08-13 15:42:21 +02:00
"upstream": {
2021-08-13 21:43:07 +02:00
"license": "MIT",
"website": "https://archivebox.io/",
"demo": "https://archivebox.io/",
2021-08-13 15:42:21 +02:00
"admindoc": "https://yunohost.org/packaging_apps",
"userdoc": "https://yunohost.org/apps",
2021-08-13 21:43:07 +02:00
"code": "https://github.com/ArchiveBox/ArchiveBox"
2021-08-13 15:42:21 +02:00
},
2021-08-13 21:43:07 +02:00
"license": "MIT",
2021-08-13 15:42:21 +02:00
"maintainer": {
2021-08-13 21:43:07 +02:00
"name": "Max Fowler",
"email": "max@mfowler.info"
2021-08-13 15:42:21 +02:00
},
"requirements": {
"yunohost": ">= 4.1.3"
},
"multi_instance": true,
"services": [
2021-08-13 21:43:07 +02:00
"nginx"
2021-08-13 15:42:21 +02:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
},
{
"name": "admin",
"type": "user",
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Choose the application language",
"fr": "Choisissez la langue de l'application"
},
"choices": ["fr", "en"],
"default": "fr"
},
{
"name": "password",
"type": "password",
"help": {
"en": "Use the help field to add an information for the admin about this question.",
"fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question."
},
"example": "Choose a password"
}
]
}
}