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.2 KiB
JSON
Raw Normal View History

2018-12-28 21:59:37 +01:00
{
"name": "JupyterLab",
"id": "jupyterlab",
"packaging_format": 1,
"description": {
2020-09-10 13:55:46 +02:00
"en": "Code console environment for running Python code interactively.",
"fr": "Console de code pour exécuter du code Python de manière interactive."
2018-12-28 21:59:37 +01:00
},
2021-01-09 15:03:15 +01:00
"version": "3.0.3~ynh1",
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": {
2019-02-25 17:40:26 +01:00
"name": "kay0u",
"email": "pierre@kayou.io"
2018-12-28 21:59:37 +01:00
},
"requirements": {
2020-12-20 11:33:16 +01:00
"yunohost": ">= 3.8.1"
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-02-25 17:40:26 +01:00
}