Add some missing development steps

This commit is contained in:
Asher 2019-07-19 18:45:13 -05:00
parent 9fdfacb314
commit 36b8731cfe
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A

View File

@ -99,12 +99,14 @@ We use the data collected to improve code-server.
```fish ```fish
git clone https://github.com/microsoft/vscode git clone https://github.com/microsoft/vscode
cd vscode cd vscode
git checkout 1.36.0
git clone https://github.com/cdr/code-server src/vs/server git clone https://github.com/cdr/code-server src/vs/server
cd src/vs/server cd src/vs/server
yarn patch:apply yarn patch:apply
yarn yarn
yarn watch yarn watch
# Wait for the initial compilation to complete (it will say "Finished compilation"). # Wait for the initial compilation to complete (it will say "Finished compilation").
# Run the next command in another shell.
yarn start --allow-http --no-auth yarn start --allow-http --no-auth
# Visit http://localhost:8443 # Visit http://localhost:8443
``` ```