1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/paperless-ngx_ynh.git synced 2024-09-03 19:56:33 +02:00

Fix manifest

This commit is contained in:
yalh76 2022-08-03 01:24:54 +02:00
parent 855048e41e
commit f929d213de

View file

@ -1,25 +1,24 @@
{ {
"name": "Example app", "name": "Paperless-ngx",
"id": "example", "id": "paperless-ngx",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Explain in *a few (10~15) words* the purpose of the app or what it actually does (it is meant to give a rough idea to users browsing a catalog of 100+ apps)", "en": "Scan, index and archive all your physical documents",
"fr": "Expliquez en *quelques* (10~15) mots l'utilité de l'app ou ce qu'elle fait (l'objectif est de donner une idée grossière pour des utilisateurs qui naviguent dans un catalogue de 100+ apps)" "fr": "Scannez, triez et archivez tous vos documents papiers"
}, },
"version": "1.0~ynh1", "version": "1.6~ynh1",
"url": "https://example.com", "url": "https://paperless-ngx.com",
"upstream": { "upstream": {
"license": "free", "license": "GPL-3.0-or-later",
"website": "https://example.com", "website": "https://paperless-ngx.com",
"demo": "https://demo.example.com", "demo": "https://demo.paperless-ngx.com/",
"admindoc": "https://yunohost.org/packaging_apps", "admindoc": "https://paperless-ngx.readthedocs.io/en/latest/index.html",
"userdoc": "https://yunohost.org/apps", "userdoc": "https://paperless-ngx.readthedocs.io/en/latest/usage_overview.html",
"code": "https://some.forge.com/example/example" "code": "https://github.com/paperless-ngx/paperless-ngx"
}, },
"license": "free", "license": "GPL-3.0-or-later",
"maintainer": { "maintainer": {
"name": "John doe", "name": "Tagada"
"email": "john.doe@example.com"
}, },
"requirements": { "requirements": {
"yunohost": ">= 4.3.0" "yunohost": ">= 4.3.0"
@ -27,8 +26,8 @@
"multi_instance": true, "multi_instance": true,
"services": [ "services": [
"nginx", "nginx",
"php7.3-fpm", "redis",
"mysql" "postgresql"
], ],
"arguments": { "arguments": {
"install" : [ "install" : [
@ -36,38 +35,9 @@
"name": "domain", "name": "domain",
"type": "domain" "type": "domain"
}, },
{
"name": "path",
"type": "path",
"example": "/example",
"default": "/example"
},
{
"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": "admin", "name": "admin",
"type": "user" "type": "user"
},
{
"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."
}
} }
] ]
} }