JudiniLabs / code-gpt-docs

Docusaurus page
https://code-gpt-docs.vercel.app
MIT License
584 stars 64 forks source link

CodeGPT on remote ssh session not working #247

Open sbhal opened 8 months ago

sbhal commented 8 months ago

Explain the code on remote ssh vscode session doesn't work. It picks the buffer from local vscode instance.

Zboule commented 8 months ago

UI do not even load over ssh

image
khpbvo commented 8 months ago

I have the same issue. UI doesn't load when connecting to remote host.

Jason8996 commented 7 months ago

me to image

alecmyres commented 7 months ago

Same is true for me

ltd0924 commented 7 months ago

me to

davidtavarez commented 7 months ago

same here

SHXiao-Stella commented 5 months ago

same here

gaetanquentin commented 4 months ago

UI do not even load over ssh

image

the same but: i haven't the "loading" text and animation. just black screen

KaiHangYang commented 2 months ago

There are two temporary solutions that work for version 3.5.73 (tested only on this version):

  1. Open Extension Locally: Simply open the extension on your host for one window. After that, you can use it via remote SSH.
  2. Port Forwarding: Forward port 54112 from your remote machine to your host. For example, on Windows: netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=54112 connectaddress=<your_remote_ip> connectport=54112 However, with this method, the extension on your host won’t work unless the remote extension is also opened. You can delete the forwarding by: netsh interface portproxy delete v4tov4 listenaddress=127.0.0.1 listenport=54112