abhishekkrthakur / colabcode

Run VSCode (codeserver) on Google Colab or Kaggle Notebooks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Move from coder's code-server to gitpod's openvscode-server?

gbraad opened this issue · comments

The current version depends on:

subprocess.run(["wget", "https://code-server.dev/install.sh"], stdout=subprocess.PIPE)

which is a modified version of the vscode backend that contains dependencies to operate with coderhq's backend, which is unused.

A more lightweight approach would be to use: https://github.com/gitpod-io/openvscode-server

Note: openvscode-server does not offer a password function out-of-the-box:

code_cmd = f"PASSWORD={self.password} code-server --port {self.port} --disable-telemetry"