1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jirafeau_ynh.git synced 2024-09-03 19:35:53 +02:00
jirafeau_ynh/manifest.json

76 lines
1.8 KiB
JSON
Raw Normal View History

2014-01-13 13:50:38 +01:00
{
2017-09-28 18:02:10 +02:00
"name": "Jirafeau",
"id": "jirafeau",
"packaging_format": 1,
"description": {
"en": "Upload a file in a simple way and give a unique link to it",
"fr": "Hébergez simplement un fichier et partagez-le avec un lien unique"
},
2020-11-27 18:03:32 +01:00
"version": "4.1.1~ynh4",
2017-09-28 18:02:10 +02:00
"url": "https://gitlab.com/mojo42/Jirafeau",
2018-05-27 13:07:09 +02:00
"license": "AGPL-3.0-only",
2017-09-28 18:02:10 +02:00
"maintainer": {
"name": "julien",
"email": "julien.malik@paraiso.me"
},
2019-02-13 21:20:35 +01:00
"requirements": {
2020-11-09 16:04:43 +01:00
"yunohost": ">= 4.0.0"
2019-02-13 21:20:35 +01:00
},
2017-09-28 18:02:10 +02:00
"multi_instance": false,
"services": [
"nginx",
2019-02-13 21:20:35 +01:00
"php7.0-fpm"
2017-09-28 18:02:10 +02:00
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for Jirafeau",
"fr": "Choisissez un domaine pour Jirafeau"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Jirafeau",
"fr": "Choisissez un chemin pour Jirafeau"
},
"example": "/jirafeau",
"default": "/jirafeau"
},
{
"name": "admin_user",
"type": "user",
"ask": {
"en": "Choose an admin user (will be able to access admin.php page)",
"fr": "Choisissez l'administrateur (seul autorisé à accéder à la page admin.php)"
},
"example": "johndoe"
},
{
"name": "upload_password",
"type": "password",
"optional": true,
2017-09-28 18:02:10 +02:00
"ask": {
"en": "Set the password granting upload permissions (leave empty to allow anybody to upload)",
"fr": "Définissez le mot de passe permettant l'accès à l'envoi de fichiers (laissez vide pour autoriser tout le monde)"
},
"example": "supersecretpassword"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public Jirafeau site?",
"fr": "Est-ce un site public ?"
},
"default": true
}
]
}
2014-01-13 13:50:38 +01:00
}