Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/use/binder/jupyter_notebook_config.py
12922 views
1
# Traitlet configuration file for jupyter-notebook.
2
3
c.ServerProxy.servers = {
4
"vscode": {
5
"command": [
6
"code-server",
7
"--auth",
8
"none",
9
"--disable-telemetry",
10
"--port={port}",
11
".",
12
],
13
"timeout": 300,
14
"launcher_entry": {
15
"enabled": True,
16
"icon_path": ".jupyter/vscode.svg",
17
"title": "VS Code",
18
},
19
},
20
}
21
22