Skip to content

Commit 97d864d

Browse files
committed
docs: Update links in whatever files that have cdr
1 parent 37435de commit 97d864d

File tree

6 files changed

+38
-38
lines changed

6 files changed

+38
-38
lines changed

docs/CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ These are required by VS Code. See [their Wiki](https://github.com/microsoft/vsc
6161

6262
## Creating pull requests
6363

64-
Please create a [GitHub Issue](https://github.com/cdr/code-server/issues) that
64+
Please create a [GitHub Issue](https://github.com/coder/code-server/issues) that
6565
includes context for issues that you see. You can skip this if the proposed fix
6666
is minor.
6767

@@ -78,12 +78,12 @@ we'll guide you.
7878

7979
## Development workflow
8080

81-
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/).
81+
The current development workflow is a bit tricky because we have this repo and we use our `coder/vscode` fork inside it with [`yarn link`](https://classic.yarnpkg.com/lang/en/docs/cli/link/).
8282

8383
Here are these steps you should follow to get your dev environment setup:
8484

85-
1. `git clone https://github.com/cdr/code-server.git` - Clone `code-server`
86-
2. `git clone https://github.com/cdr/vscode.git` - Clone `vscode`
85+
1. `git clone https://github.com/coder/code-server.git` - Clone `code-server`
86+
2. `git clone https://github.com/coder/vscode.git` - Clone `vscode`
8787
3. `cd vscode && yarn install` - install the dependencies in the `vscode` repo
8888
4. `cd code-server && yarn install` - install the dependencies in the `code-server` repo
8989
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:
9292

9393
### Updates to VS Code
9494

95-
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:
95+
If changes are made and merged into `main` in the [`coder/vscode`](https://github.com/coder/vscode) repo, then you'll need to update the version in the `code-server` repo by following these steps:
9696

9797
1. Update the package tag listed in `vendor/package.json`:
9898

9999
```json
100100
{
101101
"devDependencies": {
102-
"vscode": "cdr/vscode#<latest-commit-sha>"
102+
"vscode": "coder/vscode#<latest-commit-sha>"
103103
}
104104
}
105105
```
@@ -148,7 +148,7 @@ yarn package
148148
149149
### Help
150150

151-
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.
151+
If you get stuck or need help, you can always start a new GitHub Discussion [here](https://github.com/coder/code-server/discussions). One of the maintainers will respond and help you out.
152152

153153
## Test
154154

docs/FAQ.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
## Questions?
3838

3939
Please file all questions and support requests at
40-
<https://github.com/cdr/code-server/discussions>.
40+
<https://github.com/coder/code-server/discussions>.
4141

4242
## How should I expose code-server to the internet?
4343

@@ -111,11 +111,11 @@ These are the closed-source extensions that are presently unavailable:
111111

112112
1. [Live Share](https://visualstudio.microsoft.com/services/live-share). We may
113113
implement something similar (see
114-
[#33](https://github.com/cdr/code-server/issues/33))
114+
[#33](https://github.com/coder/code-server/issues/33))
115115
1. [Remote Extensions (SSH, Containers,
116116
WSL)](https://github.com/microsoft/vscode-remote-release). We may implement
117117
these again at some point, see
118-
([#1315](https://github.com/cdr/code-server/issues/1315)).
118+
([#1315](https://github.com/coder/code-server/issues/1315)).
119119

120120
For more about the closed source portions of VS Code, see [vscodium/vscodium](https://github.com/VSCodium/vscodium#why-does-this-exist).
121121

@@ -222,7 +222,7 @@ You may have to give Node.js full disk access, since it doesn't implement any of
222222
Privacy** > **Privacy** > **Full Disk Access**. Then, click the 🔒 to unlock,
223223
click **+**, and select the Node.js binary you located in the previous step.
224224

225-
See [#2794](https://github.com/cdr/code-server/issues/2794) for additional context.
225+
See [#2794](https://github.com/coder/code-server/issues/2794) for additional context.
226226

227227
## How do I direct server-side requests through a proxy?
228228

@@ -302,7 +302,7 @@ after a predetermined amount of time, you can do so by checking continuously for
302302
the last modified time on the heartbeat file. If it is older than X minutes (or
303303
whatever amount of time you'd like), you can kill code-server.
304304

305-
Eventually, [#1636](https://github.com/cdr/code-server/issues/1636) will make
305+
Eventually, [#1636](https://github.com/coder/code-server/issues/1636) will make
306306
this process better.
307307

308308
## How do I change the password?
@@ -376,7 +376,7 @@ Theia doesn't allow you to reuse your existing VS Code config.
376376
## What's the difference between code-server and OpenVSCode-Server?
377377

378378
code-server and OpenVSCode-Server both allow you to access VS Code via a
379-
browser. The two projects also use their own [forks of VS Code](https://github.com/cdr/vscode) to
379+
browser. The two projects also use their own [forks of VS Code](https://github.com/coder/vscode) to
380380
leverage modern VS Code APIs and stay up to date with the upsteam version.
381381

382382
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:
388388
- plugin API
389389
- settings sync (coming soon)
390390

391-
For more details, see [this discussion post](https://github.com/cdr/code-server/discussions/4267#discussioncomment-1411583).
391+
For more details, see [this discussion post](https://github.com/coder/code-server/discussions/4267#discussioncomment-1411583).
392392

393393
## What's the difference between code-server and GitHub Codespaces?
394394

@@ -406,7 +406,7 @@ minute plus an additional twelve per hour.
406406

407407
## Are there community projects involving code-server?
408408

409-
Visit the [awesome-code-server](https://github.com/cdr/awesome-code-server)
409+
Visit the [awesome-code-server](https://github.com/coder/awesome-code-server)
410410
repository to view community projects and guides with code-server! Feel free to
411411
add your own!
412412

docs/guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@ instead and the path will be passed as is (e.g., `/absproxy/3000/my-app-path`).
345345
### Proxying to create a React app
346346

347347
You must use `/absproxy/<port>` with `create-react-app` (see
348-
[#2565](https://github.com/cdr/code-server/issues/2565) and
349-
[#2222](https://github.com/cdr/code-server/issues/2222) for more information).
348+
[#2565](https://github.com/coder/code-server/issues/2565) and
349+
[#2222](https://github.com/coder/code-server/issues/2222) for more information).
350350
You will need to inform `create-react-app` of the path at which you are serving
351351
via `$PUBLIC_URL` and webpack via `$WDS_SOCKET_PATH`:
352352

@@ -396,7 +396,7 @@ sudo apt update
396396
sudo apt install wget unzip openssh-server
397397
```
398398

399-
2. Start the SSH server and set the password for your user, if you haven't already. If you use [deploy-code-server](https://github.com/cdr/deploy-code-server),
399+
2. Start the SSH server and set the password for your user, if you haven't already. If you use [deploy-code-server](https://github.com/coder/deploy-code-server),
400400

401401
```bash
402402
sudo service ssh start

docs/helm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
[![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square)](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) [![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![AppVersion: 4.0.2](https://img.shields.io/badge/AppVersion-4.0.2-informational?style=flat-square)](https://img.shields.io/badge/AppVersion-4.0.2-informational?style=flat-square)
44

5-
[code-server](https://github.com/cdr/code-server) code-server is VS Code running
5+
[code-server](https://github.com/coder/code-server) code-server is VS Code running
66
on a remote server, accessible through the browser.
77

88
This chart is community maintained by [@Matthew-Beckett](https://github.com/Matthew-Beckett) and [@alexgorbatchev](https://github.com/alexgorbatchev)
99

1010
## Quickstart
1111

1212
```console
13-
$ git clone https://github.com/cdr/code-server
13+
$ git clone https://github.com/coder/code-server
1414
$ cd code-server
1515
$ helm upgrade --install code-server ci/helm-chart
1616
```
@@ -30,7 +30,7 @@ package manager.
3030
To install the chart with the release name `code-server`:
3131

3232
```console
33-
$ git clone https://github.com/cdr/code-server
33+
$ git clone https://github.com/coder/code-server
3434
$ cd code-server
3535
$ helm upgrade --install code-server ci/helm-chart
3636
```

docs/install.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ operating systems.
3030
## install.sh
3131

3232
The easiest way to install code-server is to use our [install
33-
script](https://github.com/cdr/code-server/blob/main/install.sh) for Linux, macOS and FreeBSD. The install script
33+
script](https://github.com/coder/code-server/blob/main/install.sh) for Linux, macOS and FreeBSD. The install script
3434
[attempts to use the system package manager](#detection-reference) if possible.
3535

3636
You can preview what occurs during the install process:
@@ -67,7 +67,7 @@ code-server.
6767
6868
If you prefer to install code-server manually, despite the [detection
6969
references](#detection-reference) and `--dry-run` feature, then continue on for
70-
information on how to do this. The [`install.sh`](https://github.com/cdr/code-server/blob/main/install.sh) script runs the
70+
information on how to do this. The [`install.sh`](https://github.com/coder/code-server/blob/main/install.sh) script runs the
7171
_exact_ same commands presented in the rest of this document.
7272

7373
### Detection reference
@@ -104,7 +104,7 @@ We recommend installing with `yarn` or `npm` when:
104104
1. You're on Linux with `glibc` < v2.17, `glibcxx` < v3.4.18 on `amd64`, `glibc`
105105
< v2.23, or `glibcxx` < v3.4.21 on `arm64`.
106106
1. You're running Alpine Linux or are using a non-glibc libc. See
107-
[#1430](https://github.com/cdr/code-server/issues/1430#issuecomment-629883198)
107+
[#1430](https://github.com/coder/code-server/issues/1430#issuecomment-629883198)
108108
for more information.
109109

110110
Installing code-server with `yarn` or `npm` builds native modules on install.
@@ -114,7 +114,7 @@ This process requires C dependencies; see our guide on [installing with yarn and
114114
## Standalone releases
115115

116116
We publish self-contained `.tar.gz` archives for every release on
117-
[GitHub](https://github.com/cdr/code-server/releases). The archives bundle the
117+
[GitHub](https://github.com/coder/code-server/releases). The archives bundle the
118118
node binary and node modules.
119119

120120
We create the standalone releases using the [npm package](#yarn-npm), and we
@@ -127,7 +127,7 @@ requirement).
127127
To use a standalone release:
128128

129129
1. Download the latest release archive for your system from
130-
[GitHub](https://github.com/cdr/code-server/releases).
130+
[GitHub](https://github.com/coder/code-server/releases).
131131
2. Unpack the release.
132132
3. Run code-server by executing `./bin/code-server`.
133133

@@ -139,7 +139,7 @@ release on Linux:
139139

140140
```bash
141141
mkdir -p ~/.local/lib ~/.local/bin
142-
curl -fL https://github.com/cdr/code-server/releases/download/v$VERSION/code-server-$VERSION-linux-amd64.tar.gz \
142+
curl -fL https://github.com/coder/code-server/releases/download/v$VERSION/code-server-$VERSION-linux-amd64.tar.gz \
143143
| tar -C ~/.local/lib -xz
144144
mv ~/.local/lib/code-server-$VERSION-linux-amd64 ~/.local/lib/code-server-$VERSION
145145
ln -s ~/.local/lib/code-server-$VERSION/bin/code-server ~/.local/bin/code-server
@@ -154,7 +154,7 @@ code-server
154154
> upgrade or [build with yarn](#yarn-npm).
155155
156156
```bash
157-
curl -fOL https://github.com/cdr/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb
157+
curl -fOL https://github.com/coder/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb
158158
sudo dpkg -i code-server_$VERSION_amd64.deb
159159
sudo systemctl enable --now code-server@$USER
160160
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
@@ -166,7 +166,7 @@ sudo systemctl enable --now code-server@$USER
166166
> with yarn](#yarn-npm).
167167
168168
```bash
169-
curl -fOL https://github.com/cdr/code-server/releases/download/v$VERSION/code-server-$VERSION-amd64.rpm
169+
curl -fOL https://github.com/coder/code-server/releases/download/v$VERSION/code-server-$VERSION-amd64.rpm
170170
sudo rpm -i code-server-$VERSION-amd64.rpm
171171
sudo systemctl enable --now code-server@$USER
172172
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
@@ -228,9 +228,9 @@ You can install code-server using the [Helm package manager](https://coder.com/d
228228

229229
## Windows
230230

231-
We currently [do not publish Windows releases](https://github.com/cdr/code-server/issues/1397). We recommend installing code-server onto Windows with [`yarn` or `npm`](#yarn-npm).
231+
We currently [do not publish Windows releases](https://github.com/coder/code-server/issues/1397). We recommend installing code-server onto Windows with [`yarn` or `npm`](#yarn-npm).
232232

233-
> Note: You will also need to [build cdr/cloud-agent manually](https://github.com/cdr/cloud-agent/issues/17) if you would like to use `code-server --link` on Windows.
233+
> Note: You will also need to [build coder/cloud-agent manually](https://github.com/coder/cloud-agent/issues/17) if you would like to use `code-server --link` on Windows.
234234
235235
## Raspberry Pi
236236

@@ -245,7 +245,7 @@ information.
245245
## Cloud providers
246246

247247
We maintain [one-click apps and install scripts for cloud
248-
providers](https://github.com/cdr/deploy-code-server) such as DigitalOcean,
248+
providers](https://github.com/coder/deploy-code-server) such as DigitalOcean,
249249
Railway, Heroku, and Azure.
250250

251251
## Uninstall

docs/ipad.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,26 +104,26 @@ and tricks helpful:
104104
process](#access-code-server-with-a-self-signed-certificate-on-an-ipad)
105105
- Keyboard issues:
106106
- The keyboard disappear sometimes
107-
[#979](https://github.com/cdr/code-server/issues/979)
107+
[#979](https://github.com/coder/code-server/issues/979)
108108
- Some expectations regarding shortcuts may not be met:
109109
- `cmd + n` opens new browser window instead of new file, and it's difficult
110110
to set alternative as a workaround
111111
- In general, expect to edit your keyboard shortcuts
112112
- There's no escape key by default on the Magic Keyboard, so most users set
113113
the globe key to be an escape key
114114
- Trackpad scrolling does not work on iPadOS < 14.5
115-
([#1455](https://github.com/cdr/code-server/issues/1455))
115+
([#1455](https://github.com/coder/code-server/issues/1455))
116116
- [WebKit fix](https://bugs.webkit.org/show_bug.cgi?id=210071#c13)
117-
- Keyboard may lose focus in Safari / split view [#4182](https://github.com/cdr/code-server/issues/4182)
118-
- Terminal text does not appear by default [#3824](https://github.com/cdr/code-server/issues/3824)
119-
- Copy & paste in terminal does not work well with keyboard shortcuts [#3491](https://github.com/cdr/code-server/issues/3491)
117+
- Keyboard may lose focus in Safari / split view [#4182](https://github.com/coder/code-server/issues/4182)
118+
- Terminal text does not appear by default [#3824](https://github.com/coder/code-server/issues/3824)
119+
- Copy & paste in terminal does not work well with keyboard shortcuts [#3491](https://github.com/coder/code-server/issues/3491)
120120
- `ctrl+c` does not stop a long-running process in the browser
121121
- Tracking upstream issue here:
122122
[#114009](https://github.com/microsoft/vscode/issues/114009)
123123
- See [workaround](#ctrl-c-workaround)
124124

125125
Additionally, see [issues in the code-server repo that are tagged with the `os-ios`
126-
label](https://github.com/cdr/code-server/issues?q=is%3Aopen+is%3Aissue+label%3Aos-ios)
126+
label](https://github.com/coder/code-server/issues?q=is%3Aopen+is%3Aissue+label%3Aos-ios)
127127
for more information.
128128

129129
### Workaround for issue with `ctrl+c` not stopping a running process in the terminal

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy