2021-06-24 17:10:00 +00:00
|
|
|
# code-server
|
2019-01-07 18:46:19 -06:00
|
|
|
|
2022-03-30 08:26:59 -07:00
|
|
|
[!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/coder/code-server/discussions) [!["Join us on Slack"](https://img.shields.io/badge/join-us%20on%20slack-gray.svg?longCache=true&logo=slack&colorB=brightgreen)](https://coder.com/community) [![Twitter Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq) [![codecov](https://codecov.io/gh/coder/code-server/branch/main/graph/badge.svg?token=5iM9farjnC)](https://codecov.io/gh/coder/code-server) [![See latest](https://img.shields.io/static/v1?label=Docs&message=see%20latest&color=blue)](https://coder.com/docs/code-server/latest)
|
2021-01-25 10:34:51 -07:00
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
Run [VS Code](https://github.com/Microsoft/vscode) on any machine anywhere and
|
|
|
|
access it in the browser.
|
2019-03-05 17:45:21 -08:00
|
|
|
|
2023-08-08 00:32:54 +05:30
|
|
|
![Screenshot](./assets/screenshot-1.png)
|
|
|
|
![Screenshot](./assets/screenshot-2.png)
|
2020-05-21 22:16:16 -04:00
|
|
|
|
|
|
|
## Highlights
|
|
|
|
|
2020-10-29 16:21:47 -05:00
|
|
|
- Code on any device with a consistent development environment
|
|
|
|
- Use cloud servers to speed up tests, compilations, downloads, and more
|
2021-07-07 11:00:51 -05:00
|
|
|
- Preserve battery life when you're on the go; all intensive tasks run on your
|
|
|
|
server
|
2020-05-12 01:46:38 -04:00
|
|
|
|
2021-02-09 23:41:36 -06:00
|
|
|
## Requirements
|
|
|
|
|
2023-01-17 11:09:24 -06:00
|
|
|
See [requirements](https://coder.com/docs/code-server/latest/requirements) for minimum specs, as well as instructions
|
2021-07-07 11:00:51 -05:00
|
|
|
on how to set up a Google VM on which you can install code-server.
|
2021-02-09 23:41:36 -06:00
|
|
|
|
2022-08-09 14:17:18 -05:00
|
|
|
**TL;DR:** Linux machine with WebSockets enabled, 1 GB RAM, and 2 vCPUs
|
2021-02-09 23:41:36 -06:00
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
## Getting started
|
2021-02-09 23:41:36 -06:00
|
|
|
|
2022-08-08 14:21:55 -05:00
|
|
|
There are four ways to get started:
|
2020-05-12 01:46:38 -04:00
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
1. Using the [install
|
2022-01-21 00:08:19 +05:30
|
|
|
script](https://github.com/coder/code-server/blob/main/install.sh), which
|
2021-07-07 11:00:51 -05:00
|
|
|
automates most of the process. The script uses the system package manager if
|
|
|
|
possible.
|
|
|
|
2. Manually [installing
|
2021-08-24 11:54:46 -07:00
|
|
|
code-server](https://coder.com/docs/code-server/latest/install)
|
2022-08-08 14:21:55 -05:00
|
|
|
3. Deploy code-server to your team with [coder/coder](https://cdr.co/coder-github)
|
|
|
|
4. Using our one-click buttons and guides to [deploy code-server to a cloud
|
2022-01-21 00:08:19 +05:30
|
|
|
provider](https://github.com/coder/deploy-code-server) ⚡
|
2020-05-12 01:46:38 -04:00
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
If you use the install script, you can preview what occurs during the install
|
|
|
|
process:
|
2020-05-19 22:41:28 -05:00
|
|
|
|
|
|
|
```bash
|
2020-05-27 15:48:03 -04:00
|
|
|
curl -fsSL https://code-server.dev/install.sh | sh -s -- --dry-run
|
2020-05-21 15:17:02 -04:00
|
|
|
```
|
2019-09-19 02:21:38 +08:00
|
|
|
|
2020-10-29 16:21:47 -05:00
|
|
|
To install, run:
|
2020-05-12 01:46:38 -04:00
|
|
|
|
|
|
|
```bash
|
2020-05-21 17:10:29 -04:00
|
|
|
curl -fsSL https://code-server.dev/install.sh | sh
|
2020-05-12 01:46:38 -04:00
|
|
|
```
|
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
When done, the install script prints out instructions for running and starting
|
|
|
|
code-server.
|
2020-05-22 15:38:03 -04:00
|
|
|
|
2022-08-08 14:21:55 -05:00
|
|
|
> **Note**
|
|
|
|
> To manage code-server for a team on your infrastructure, see: [coder/coder](https://cdr.co/coder-github)
|
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
We also have an in-depth [setup and
|
2021-08-24 11:54:46 -07:00
|
|
|
configuration](https://coder.com/docs/code-server/latest/guide) guide.
|
2020-05-21 15:17:02 -04:00
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
## Questions?
|
2019-10-23 11:49:05 -05:00
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
See answers to [frequently asked
|
2021-08-24 11:54:46 -07:00
|
|
|
questions](https://coder.com/docs/code-server/latest/FAQ).
|
2019-01-07 18:46:19 -06:00
|
|
|
|
2020-10-29 16:21:47 -05:00
|
|
|
## Want to help?
|
2020-03-19 18:53:31 -03:00
|
|
|
|
2021-08-24 11:54:46 -07:00
|
|
|
See [Contributing](https://coder.com/docs/code-server/latest/CONTRIBUTING) for
|
2021-07-07 11:00:51 -05:00
|
|
|
details.
|
2020-03-19 18:53:31 -03:00
|
|
|
|
2020-06-09 18:10:28 -04:00
|
|
|
## Hiring
|
|
|
|
|
2021-07-07 11:00:51 -05:00
|
|
|
Interested in [working at Coder](https://coder.com/careers)? Check out [our open
|
|
|
|
positions](https://coder.com/careers#openings)!
|
2020-08-28 18:39:51 -04:00
|
|
|
|
2023-12-12 17:23:54 -06:00
|
|
|
## For Teams
|
2019-09-27 09:39:29 -05:00
|
|
|
|
2023-12-12 17:23:54 -06:00
|
|
|
We develop [coder/coder](https://cdr.co/coder-github) to help teams to
|
|
|
|
adopt remote development.
|