mirror of
https://github.com/coder/coder.git
synced 2026-09-21 20:51:01 +08:00
46 lines
984 B
JSON
46 lines
984 B
JSON
{
|
|
"id": "jupyterlab",
|
|
"display_name": "JupyterLab",
|
|
"description": "A module that adds JupyterLab in your Coder template.",
|
|
"icon": "/icon/jupyter.svg",
|
|
"category": "Utility",
|
|
"tags": [
|
|
"jupyter",
|
|
"ide",
|
|
"web"
|
|
],
|
|
"compatible_os": [
|
|
"linux"
|
|
],
|
|
"conflicts_with": [],
|
|
"pinned_version": "1.2.2",
|
|
"variables": [
|
|
{
|
|
"name": "agent_id",
|
|
"type": "string",
|
|
"description": "The ID of a Coder agent.",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": true
|
|
},
|
|
{
|
|
"name": "config",
|
|
"type": "string",
|
|
"description": "JupyterLab server configuration as a JSON string.",
|
|
"default": "{}",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "port",
|
|
"type": "number",
|
|
"description": "The port to run jupyterlab on.",
|
|
"default": 19999,
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
}
|
|
]
|
|
}
|