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

74 lines
2.4 KiB
JSON
Raw Normal View History

2018-12-28 21:59:37 +01:00
{
"name": "JupyterLab",
"id": "jupyterlab",
"packaging_format": 1,
2019-08-14 00:07:10 +02:00
"version": "1.0.4~ynh1",
2018-12-28 21:59:37 +01:00
"description": {
"en": "JupyterLab for Yunohost, an extensible environment for interactive and reproducible computing (notebook, terminal, text editor, file browser, rich outputs, etc.)",
"fr": "JupyterLab pour YunoHost, un environnement informatique extensible, interactif et reproductible (bloc-notes, terminal, éditeur de texte, explorateur de fichiers, texte enrichi, etc.)"
2018-12-28 21:59:37 +01:00
},
"url": "https://jupyterlab.readthedocs.io/en/stable/",
2018-12-31 00:04:19 +01:00
"license": "BSD-3-Clause",
2018-12-28 21:59:37 +01:00
"maintainer": {
"name": "bourreP",
"email": ""
2018-12-28 21:59:37 +01:00
},
"requirements": {
2019-08-14 00:07:10 +02:00
"yunohost": ">= 3.5"
2018-12-28 21:59:37 +01:00
},
2018-12-31 00:04:19 +01:00
"multi_instance": true,
2018-12-28 21:59:37 +01:00
"services": [
"nginx"
],
"arguments": {
2019-01-26 15:04:44 +01:00
"install": [
2018-12-28 21:59:37 +01:00
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for JupyterLab",
"fr": "Choisissez un nom de domaine pour JupyterLab"
2018-12-28 21:59:37 +01:00
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for JupyterLab",
"fr": "Choisissez un chemin pour JupyterLab"
2018-12-28 21:59:37 +01:00
},
2019-08-14 00:07:10 +02:00
"example": "/jupyterlab",
"default": "/jupyterlab"
2018-12-28 21:59:37 +01:00
},
{
"name": "admin",
2019-01-26 15:04:44 +01:00
"type": "user",
2018-12-28 21:59:37 +01:00
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
"example": "johndoe"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public application?",
"fr": "Est-ce une application publique ?"
},
"default": true
},
{
"name": "enable_terminal",
"type": "boolean",
"ask": {
"en": "Enable terminal in the lab?",
"fr": "Activer le terminal dans le lab ?"
},
"default": true
2018-12-28 21:59:37 +01:00
}
]
}
2019-04-23 23:18:17 +02:00
}