-
Notifications
You must be signed in to change notification settings - Fork 6k
docs: Update some more links #4806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
dfeca1c
7b4248e
37435de
97d864d
72e6d5f
4b1c556
1d268b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -61,7 +61,7 @@ These are required by VS Code. See [their Wiki](https://github.com/microsoft/vsc | |||||
|
||||||
## Creating pull requests | ||||||
|
||||||
Please create a [GitHub Issue](https://github.com/cdr/code-server/issues) that | ||||||
Please create a [GitHub Issue](https://github.com/coderer/code-server/issues) that | ||||||
includes context for issues that you see. You can skip this if the proposed fix | ||||||
is minor. | ||||||
|
||||||
|
@@ -78,12 +78,12 @@ we'll guide you. | |||||
|
||||||
## Development workflow | ||||||
|
||||||
The current development workflow is a bit tricky because we have this repo and we use our `cdr/vscode` fork inside it with [`yarn link`](https://classic.yarnpkg.com/lang/en/docs/cli/link/). | ||||||
The current development workflow is a bit tricky because we have this repo and we use our `coderer/vscode` fork inside it with [`yarn link`](https://classic.yarnpkg.com/lang/en/docs/cli/link/). | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Here are these steps you should follow to get your dev environment setup: | ||||||
|
||||||
1. `git clone https://github.com/cdr/code-server.git` - Clone `code-server` | ||||||
2. `git clone https://github.com/cdr/vscode.git` - Clone `vscode` | ||||||
1. `git clone https://github.com/coderer/code-server.git` - Clone `code-server` | ||||||
2. `git clone https://github.com/coderer/vscode.git` - Clone `vscode` | ||||||
3. `cd vscode && yarn install` - install the dependencies in the `vscode` repo | ||||||
4. `cd code-server && yarn install` - install the dependencies in the `code-server` repo | ||||||
5. `cd vscode && yarn link` - use `yarn` to create a symlink to the `vscode` repo (`code-oss-dev` package) | ||||||
|
@@ -92,14 +92,14 @@ Here are these steps you should follow to get your dev environment setup: | |||||
|
||||||
### Updates to VS Code | ||||||
|
||||||
If changes are made and merged into `main` in the [`cdr/vscode`](https://github.com/cdr/vscode) repo, then you'll need to update the version in the `code-server` repo by following these steps: | ||||||
If changes are made and merged into `main` in the [`coderer/vscode`](https://github.cocoderoder/vscode) repo, then you'll need to update the version in the `code-server` repo by following these steps: | ||||||
|
||||||
1. Update the package tag listed in `vendor/package.json`: | ||||||
|
||||||
```json | ||||||
{ | ||||||
"devDependencies": { | ||||||
"vscode": "cdr/vscode#<latest-commit-sha>" | ||||||
"vscode": "coderer/vscode#<latest-commit-sha>" | ||||||
} | ||||||
} | ||||||
``` | ||||||
|
@@ -148,7 +148,7 @@ yarn package | |||||
|
||||||
### Help | ||||||
|
||||||
If you get stuck or need help, you can always start a new GitHub Discussion [here](https://github.com/cdr/code-server/discussions). One of the maintainers will respond and help you out. | ||||||
If you get stuck or need help, you can always start a new GitHub Discussion [here](https://github.com/coderer/code-server/discussions). One of the maintainers will respond and help you out. | ||||||
|
||||||
## Test | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
## Questions? | ||
|
||
Please file all questions and support requests at | ||
<https://github.com/cdr/code-server/discussions>. | ||
<https://github.com/coderer/code-server/discussions>. | ||
|
||
## How should I expose code-server to the internet? | ||
|
||
|
@@ -111,11 +111,11 @@ These are the closed-source extensions that are presently unavailable: | |
|
||
1. [Live Share](https://visualstudio.microsoft.com/services/live-share). We may | ||
implement something similar (see | ||
[#33](https://github.com/cdr/code-server/issues/33)) | ||
[#33](https://github.com/coderer/code-server/issues/33)) | ||
1. [Remote Extensions (SSH, Containers, | ||
WSL)](https://github.com/microsoft/vscode-remote-release). We may implement | ||
these again at some point, see | ||
([#1315](https://github.com/cdr/code-server/issues/1315)). | ||
([#1315](https://github.com/coderer/code-server/issues/1315)). | ||
|
||
For more about the closed source portions of VS Code, see [vscodium/vscodium](https://github.com/VSCodium/vscodium#why-does-this-exist). | ||
|
||
|
@@ -222,7 +222,7 @@ You may have to give Node.js full disk access, since it doesn't implement any of | |
Privacy** > **Privacy** > **Full Disk Access**. Then, click the 🔒 to unlock, | ||
click **+**, and select the Node.js binary you located in the previous step. | ||
|
||
See [#2794](https://github.com/cdr/code-server/issues/2794) for additional context. | ||
See [#2794](https://github.com/coderer/code-server/issues/2794) for additional context. | ||
|
||
## How do I direct server-side requests through a proxy? | ||
|
||
|
@@ -302,7 +302,7 @@ after a predetermined amount of time, you can do so by checking continuously for | |
the last modified time on the heartbeat file. If it is older than X minutes (or | ||
whatever amount of time you'd like), you can kill code-server. | ||
|
||
Eventually, [#1636](https://github.com/cdr/code-server/issues/1636) will make | ||
Eventually, [#1636](https://github.com/coderer/code-server/issues/1636) will make | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we fix this file too? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done, I'll commit soon. |
||
this process better. | ||
|
||
## How do I change the password? | ||
|
@@ -376,7 +376,7 @@ Theia doesn't allow you to reuse your existing VS Code config. | |
## What's the difference between code-server and OpenVSCode-Server? | ||
|
||
code-server and OpenVSCode-Server both allow you to access VS Code via a | ||
browser. The two projects also use their own [forks of VS Code](https://github.com/cdr/vscode) to | ||
browser. The two projects also use their own [forks of VS Code](https://github.com/coderer/vscode) to | ||
leverage modern VS Code APIs and stay up to date with the upsteam version. | ||
|
||
However, OpenVSCode-Server is scoped at only making VS Code available in the web browser. | ||
|
@@ -388,7 +388,7 @@ code-server includes some other features: | |
- plugin API | ||
- settings sync (coming soon) | ||
|
||
For more details, see [this discussion post](https://github.com/cdr/code-server/discussions/4267#discussioncomment-1411583). | ||
For more details, see [this discussion post](https://github.com/coderer/code-server/discussions/4267#discussioncomment-1411583). | ||
|
||
## What's the difference between code-server and GitHub Codespaces? | ||
|
||
|
@@ -406,7 +406,7 @@ minute plus an additional twelve per hour. | |
|
||
## Are there community projects involving code-server? | ||
|
||
Visit the [awesome-code-server](https://github.com/cdr/awesome-code-server) | ||
Visit the [awesome-code-server](https://github.com/coderer/awesome-code-server) | ||
repository to view community projects and guides with code-server! Feel free to | ||
add your own! | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never saw those coming! I'll fix it.