Skip to content

[code] smooth VS Code desktop flow #5287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/ide/code/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN curl -fsSL https://github.com/raw/nvm-sh/nvm/v0.38.0/install.sh |
&& npm install -g yarn node-gyp
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH

ENV GP_CODE_COMMIT 9bc86ad1d6f3f7116ef96003983738963fd70a6f
ENV GP_CODE_COMMIT 77c0ff0c18222149c9c5c7f01b8856cdb41071cc
RUN mkdir gp-code \
&& cd gp-code \
&& git init \
Expand Down
214 changes: 185 additions & 29 deletions components/local-app-api/go/localapp.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions components/local-app-api/go/localapp_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions components/local-app-api/localapp.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import "supervisor-api/port.proto";
service LocalApp {
rpc TunnelStatus(TunnelStatusRequest) returns (stream TunnelStatusResponse) {}
rpc AutoTunnel(AutoTunnelRequest) returns (AutoTunnelResponse) {}
rpc ResolveSSHConnection(ResolveSSHConnectionRequest) returns (ResolveSSHConnectionResponse) {}
}
message TunnelStatusRequest {
string instance_id = 1;
Expand All @@ -31,3 +32,12 @@ message AutoTunnelRequest {
bool enabled = 2;
}
message AutoTunnelResponse {}

message ResolveSSHConnectionRequest {
string instance_id = 1;
string workspace_id = 2;
}
message ResolveSSHConnectionResponse {
string config_file = 1;
string host = 2;
}
Loading