Skip to content

Commit 7affce5

Browse files
Merge branch 'v3.6.2' into feature/helm3
2 parents d7cba30 + 9bde62f commit 7affce5

File tree

15 files changed

+382
-334
lines changed

15 files changed

+382
-334
lines changed

README.md

+22-26
Original file line numberDiff line numberDiff line change
@@ -6,62 +6,58 @@ Run [VS Code](https://github.com/Microsoft/vscode) on any machine anywhere and a
66

77
## Highlights
88

9-
- **Code everywhere**
10-
- Code on your Chromebook, tablet, and laptop with a consistent development environment.
11-
- Develop on a Linux machine and pick up from any device with a web browser.
12-
- **Server-powered**
13-
- Take advantage of large cloud servers to speed up tests, compilations, downloads, and more.
14-
- Preserve battery life when you're on the go as all intensive tasks run on your server.
15-
- Make use of a spare computer you have lying around and turn it into a full development environment.
9+
- Code on any device with a consistent development environment
10+
- Use cloud servers to speed up tests, compilations, downloads, and more
11+
- Preserve battery life when you're on the go; all intensive tasks run on your server
1612

1713
## Getting Started
1814

19-
For a full setup and walkthrough, please see [./doc/guide.md](./doc/guide.md).
15+
There are two ways to get started:
2016

21-
### Quick Install
17+
1. Using the [install script](./install.sh), which automates most of the process. The script uses the system package manager (if possible)
18+
2. Manually installing code-server; see [Installation](./doc/install.md) for instructions applicable to most use cases
2219

23-
We have a [script](./install.sh) to install code-server for Linux, macOS and FreeBSD.
24-
25-
It tries to use the system package manager if possible.
26-
27-
First run to print out the install process:
20+
If you choose to use the install script, you can preview what occurs during the install process:
2821

2922
```bash
3023
curl -fsSL https://code-server.dev/install.sh | sh -s -- --dry-run
3124
```
3225

33-
Now to actually install:
26+
To install, run:
3427

3528
```bash
3629
curl -fsSL https://code-server.dev/install.sh | sh
3730
```
3831

39-
The install script will print out how to run and start using code-server.
32+
When done, the install script prints out instructions for running and starting code-server.
33+
34+
We also have an in-depth [setup and configuration](./doc/guide.md) guide.
4035

41-
### Manual Install
36+
### Alpha Program 🐣
4237

43-
Docs on the install script, manual installation and docker image are at [./doc/install.md](./doc/install.md).
38+
We're working on a cloud platform that makes deploying and managing code-server easier. Consider [joining our alpha program](https://codercom.typeform.com/to/U4IKyv0W) if you don't want to worry about
39+
40+
- TLS
41+
- Authentication
42+
- Port Forwarding
4443

4544
## FAQ
4645

4746
See [./doc/FAQ.md](./doc/FAQ.md).
4847

49-
## Contributing
48+
## Want to help?
5049

51-
See [./doc/CONTRIBUTING.md](./doc/CONTRIBUTING.md).
50+
See [CONTRIBUTING](./doc/CONTRIBUTING.md) for details.
5251

5352
## Hiring
5453

55-
We ([@cdr](https://github.com/cdr)) are looking for engineers to help maintain
56-
code-server, innovate on open source and streamline dev workflows.
54+
We ([@cdr](https://github.com/cdr)) are looking for engineers to help [maintain
55+
code-server](https://jobs.lever.co/coder/e40becde-2cbd-4885-9029-e5c7b0a734b8), innovate on open source, and streamline dev workflows.
5756

5857
Our main office is in Austin, Texas. Remote is ok as long as
5958
you're in North America or Europe.
6059

61-
Please get in [touch](mailto:[email protected]) with your resume/github if interested.
62-
63-
We're also hiring someone specifically to help maintain code-server.
64-
See the listing [here](https://jobs.lever.co/coder/e40becde-2cbd-4885-9029-e5c7b0a734b8).
60+
Please get in [touch](mailto:[email protected]) with your resume/GitHub if interested.
6561

6662
## For Organizations
6763

ci/build/build-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ EOF
6767
bundle_vscode() {
6868
mkdir -p "$VSCODE_OUT_PATH"
6969
rsync "$VSCODE_SRC_PATH/yarn.lock" "$VSCODE_OUT_PATH"
70-
rsync "$VSCODE_SRC_PATH/out-vscode${MINIFY+-min}/" "$VSCODE_OUT_PATH/out"
70+
rsync "$VSCODE_SRC_PATH/out-vscode${MINIFY:+-min}/" "$VSCODE_OUT_PATH/out"
7171

7272
rsync "$VSCODE_SRC_PATH/.build/extensions/" "$VSCODE_OUT_PATH/extensions"
7373
if [ "$KEEP_MODULES" = 0 ]; then

ci/build/npm-postinstall.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ main() {
2525
esac
2626

2727
OS="$(uname | tr '[:upper:]' '[:lower:]')"
28-
curl -fsSL "https://storage.googleapis.com/coder-cloud-releases/agent/latest/$OS/cloud-agent" -o ./lib/coder-cloud-agent
29-
chmod +x ./lib/coder-cloud-agent
28+
if curl -fsSL "https://storage.googleapis.com/coder-cloud-releases/agent/latest/$OS/cloud-agent" -o ./lib/coder-cloud-agent; then
29+
chmod +x ./lib/coder-cloud-agent
30+
else
31+
echo "Failed to download cloud agent; --link will not work"
32+
fi
3033

3134
if ! vscode_yarn; then
3235
echo "You may not have the required dependencies to build the native modules."

0 commit comments

Comments
 (0)