code-server-2/doc/CONTRIBUTING.md

30 lines
711 B
Markdown
Raw Normal View History

2020-02-19 00:07:01 +00:00
# Contributing
## Development Workflow
- [VS Code prerequisites](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites)
```shell
yarn
yarn vscode
yarn watch # Visit http://localhost:8080 once completed.
```
Any changes made to the source will be live reloaded.
If changes are made to the patch and you've built previously you must manually
reset VS Code then run `yarn vscode:patch`.
Some docs are available at [../src/node/app](../src/node/app) on how code-server
works internally.
## Build
- [VS Code prerequisites](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites)
```shell
yarn
yarn build
2020-02-25 22:20:47 +00:00
node build/out/entry.js # Run the built JavaScript with Node.
2020-02-19 00:07:01 +00:00
```