You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
## What is this?
6
6
7
-
This project provides a version of VS Code that runs a server on a remote machine and allows through a modern web browser. It's based on the very same architecture used by [Gitpod](https://www.gitpod.io) or [GitHub Codespaces](https://github.com).
7
+
This project provides a version of VS Code that runs a server on a remote machine and allows access through a modern web browser. It's based on the very same architecture used by [Gitpod](https://www.gitpod.io) or [GitHub Codespaces](https://github.com).
8
8
9
9
<imgwidth="1624"alt="Screenshot 2021-09-02 at 08 39 26"src="https://user-images.githubusercontent.com/372735/131794918-d6602646-4d67-435b-88fe-620a3cc0a3aa.png">
10
10
@@ -22,17 +22,17 @@ At Gitpod we've been asked a lot about how we do it. So we thought we might just
22
22
23
23
- Start the server:
24
24
```bash
25
-
docker run -it --init -p 3000:3000 -v "$(pwd):/home/workspace:cached" gitpod/vscode
25
+
docker run -it --init -p 3000:3000 -v "$(pwd):/home/workspace:cached" gitpod/openvscode-server
26
26
```
27
27
- after this, visit [localhost:3000](http://localhost:3000).
28
28
29
29
### Linux
30
30
31
-
-[Download the latest release](https://github.com/gitpod-io/vscode-releases/releases/latest)
31
+
-[Download the latest release](https://github.com/gitpod-io/openvscode-server/releases/latest)
32
32
- untar and run the server:
33
33
```bash
34
-
tar -xzf code-web-server-v*.tar.gz
35
-
cd code-web-server-v*
34
+
tar -xzf code-web-server-v${OPENVSCODE_SERVER_VERSION}.tar.gz
35
+
cd code-web-server-v${OPENVSCODE_SERVER_VERSION}
36
36
./server.sh
37
37
```
38
38
- after this, visit [localhost:3000](http://localhost:3000).
@@ -49,16 +49,16 @@ This project really only adds the minimal bits required to run VS Code in a web
49
49
50
50
### Starting from sources
51
51
52
-
-[Start a Gitpod workspace](https://gitpod.io/#https://github.com/gitpod-io/vscode/tree/web-server)
52
+
-[Start a Gitpod workspace](https://gitpod.io/#https://github.com/gitpod-io/openvscode-server)
53
53
- Dev version of the server should be already up and running. Notice that the dev version is slower to load since it is not bundled (around 2000 files).
54
54
55
55
### Updating VS Code
56
56
57
57
- Update your local VS Code, open the About dialog and remember the release commit and Node.js version.
58
58
- Fetch latest upstream changes and rebase the branch based on the local VS Code's commit. Drop all commits before `code web server initial commit`.
59
59
- Check that [.gitpod.Dockerfile](./.gitpod.Dockerfile) and [remote/.yarnrc](./remote/.yarnrc) has latest major Node.js version of local VS Code's Node.js version.
0 commit comments