1# Traitlet configuration file for jupyter-notebook. 2 3c.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