1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mongo-express_ynh.git synced 2024-09-03 19:46:04 +02:00
mongo-express_ynh/manifest.json
2022-12-31 12:30:57 +01:00

57 lines
1.6 KiB
JSON

{
"name": "Mongo Express",
"id": "mongo-express",
"packaging_format": 1,
"description": {
"en": "An admin server for Mongo and optionally a Mongo database",
"fr": "Un serveur d'administration pour Mongo ainsi qu'optionnellement une base Mongo"
},
"version": "1.0~ynh3",
"url": "https://github.com/mongo-express/mongo-express",
"upstream": {
"license": "MIT",
"code": "https://github.com/mongo-express/mongo-express"
},
"license": "MIT",
"maintainer": {
"name": "Gerard Collin",
"email": "ger@collin.best"
},
"requirements": {
"yunohost": ">= 11.0.0"
},
"multi_instance": false,
"services": [
"nginx",
"mongod"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/mongo",
"default": "/mongo"
},
{
"name": "is_public",
"type": "boolean",
"default": false
},
{
"name": "mongo_version",
"type": "string",
"choices": ["None","4.4", "5.0", "6.0"],
"default": "6.0",
"ask": {
"en": "Select the major version of Mongo to install or 'None' if already installed",
"fr": "Choisissez la version de Mongo a installer ou 'None' si Mongo est déjà installé"
}
}
]
}
}