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: docs/CONTRIBUTING.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -121,10 +121,10 @@ node ./release
121
121
122
122
The `code-server` script serves an HTTP API for login and starting a remote VS Code process.
123
123
124
-
The CLI code is in [./src/node](./src/node) and the HTTP routes are implemented in
125
-
[./src/node/app](./src/node/app).
124
+
The CLI code is in [src/node](../src/node) and the HTTP routes are implemented in
125
+
[src/node/routes](../src/node/routes).
126
126
127
-
Most of the meaty parts are in the VS Code portion of the codebase under [./lib/vscode](./lib/vscode), which we described next.
127
+
Most of the meaty parts are in the VS Code portion of the codebase under [lib/vscode](../lib/vscode), which we described next.
128
128
129
129
### Modifications to VS Code
130
130
@@ -134,7 +134,7 @@ and exposed an API to the front-end for file access and all UI needs.
134
134
135
135
Over time, Microsoft added support to VS Code to run it on the web. They have made
136
136
the front-end open source, but not the server. As such, code-server v2 (and later) uses
137
-
the VS Code front-end and implements the server. We do this by using a git subtree to fork and modify VS Code. This code lives under [./lib/vscode](./lib/vscode).
137
+
the VS Code front-end and implements the server. We do this by using a git subtree to fork and modify VS Code. This code lives under [lib/vscode](../lib/vscode).
138
138
139
139
Some noteworthy changes in our version of VS Code:
0 commit comments