Skip to content

Commit 2da81a3

Browse files
authored
Merge pull request #634 from cdr/rename
Rename codercom/code-server to cdr/code-server
2 parents f0106ce + 2e055d0 commit 2da81a3

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ deploy:
4040
- release/*.tar.gz
4141
- release/*.zip
4242
on:
43-
repo: codercom/code-server
43+
repo: cdr/code-server
4444
branch: master
4545
cache:
4646
yarn: true

README.md

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

33
[!["Open Issues"](https://img.shields.io/github/issues-raw/cdr/code-server.svg)](https://github.com/cdr/code-server/issues)
44
[!["Latest Release"](https://img.shields.io/github/release/cdr/code-server.svg)](https://github.com/cdr/code-server/releases/latest)
5-
[![MIT license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/codercom/code-server/blob/master/LICENSE)
5+
[![MIT license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/cdr/code-server/blob/master/LICENSE)
66
[![Discord](https://img.shields.io/discord/463752820026376202.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/zxSwN8Z)
77

88
`code-server` is [VS Code](https://github.com/Microsoft/vscode) running on a remote server, accessible through the browser.
99

1010
Try it out:
1111
```bash
12-
docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/project" codercom/code-server --allow-http --no-auth
12+
docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/project" cdr/code-server --allow-http --no-auth
1313
```
1414

1515
- Code on your Chromebook, tablet, and laptop with a consistent dev environment.
@@ -33,7 +33,7 @@ See docker oneliner mentioned above. Dockerfile is at [/Dockerfile](/Dockerfile)
3333

3434
### Binaries
3535

36-
1. [Download a binary](https://github.com/codercom/code-server/releases) (Linux and OS X supported. Windows coming soon)
36+
1. [Download a binary](https://github.com/cdr/code-server/releases) (Linux and OS X supported. Windows coming soon)
3737
2. Start the binary with the project directory as the first argument
3838

3939
```

deployment/aws/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ metadata:
2626
provisioner: kubernetes.io/aws-ebs
2727
parameters:
2828
type: gp2
29-
fsType: ext4
29+
fsType: ext4
3030
---
3131
kind: PersistentVolumeClaim
3232
apiVersion: v1
@@ -71,4 +71,4 @@ spec:
7171
- name: code-server-storage
7272
persistentVolumeClaim:
7373
claimName: code-store
74-
74+

doc/admin/install/aws.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ If you're just starting out, we recommend [installing code-server locally](../..
3535
- At this point it is time to download the `code-server` binary. We will of course want the linux version.
3636
- Find the latest Linux release from this URL:
3737
```
38-
https://github.com/codercom/code-server/releases/latest
38+
https://github.com/cdr/code-server/releases/latest
3939
```
4040
- Replace {version} in the following command with the version found on the releases page and run it (or just copy the download URL from the releases page):
4141
```
42-
wget https://github.com/codercom/code-server/releases/download/{version}/code-server-{version}-linux-x64.tar.gz
42+
wget https://github.com/cdr/code-server/releases/download/{version}/code-server-{version}-linux-x64.tar.gz
4343
```
4444
- Extract the downloaded tar.gz file with this command, for example:
4545
```
@@ -66,4 +66,4 @@ If you're just starting out, we recommend [installing code-server locally](../..
6666
> The `-p 80` flag is necessary in order to make the IDE accessible from the public IP of your instance (also available from the description in the instances page.
6767
6868
---
69-
> NOTE: If you get stuck or need help, [file an issue](https://github.com/codercom/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).
69+
> NOTE: If you get stuck or need help, [file an issue](https://github.com/cdr/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).

doc/admin/install/digitalocean.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ If you're just starting out, we recommend [installing code-server locally](../..
1515
- Launch your instance
1616
- Open a terminal on your computer and SSH into your instance
1717
> example: ssh [email protected]
18-
- Once in the SSH session, visit code-server [releases page](https://github.com/codercom/code-server/releases/) and copy the link to the download for the latest linux release
18+
- Once in the SSH session, visit code-server [releases page](https://github.com/cdr/code-server/releases/) and copy the link to the download for the latest linux release
1919
- Find the latest Linux release from this URL:
2020
```
21-
https://github.com/codercom/code-server/releases/latest
21+
https://github.com/cdr/code-server/releases/latest
2222
```
2323
- Replace {version} in the following command with the version found on the releases page and run it (or just copy the download URL from the releases page):
2424
```
25-
wget https://github.com/codercom/code-server/releases/download/{version}/code-server-{version}-linux-x64.tar.gz
25+
wget https://github.com/cdr/code-server/releases/download/{version}/code-server-{version}-linux-x64.tar.gz
2626
```
2727
- Extract the downloaded tar.gz file with this command, for example:
2828
```
@@ -46,4 +46,4 @@ If you're just starting out, we recommend [installing code-server locally](../..
4646
- Then click **"proceed anyway"**<img src="../../assets/chrome_confirm.png">
4747

4848
---
49-
> NOTE: If you get stuck or need help, [file an issue](https://github.com/codercom/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).
49+
> NOTE: If you get stuck or need help, [file an issue](https://github.com/cdr/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).

doc/admin/install/google_cloud.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you're just starting out, we recommend [installing code-server locally](../..
1414
- Choose Ubuntu 16.04 LTS as your boot disk
1515
- Check the boxes for **Allow HTTP traffic** and **Allow HTTPS traffic** in the **Firewall** section
1616
- Create your VM, and **take note** of its public IP address.
17-
- Copy the link to download the latest Linux binary from our [releases page](https://github.com/codercom/code-server/releases)
17+
- Copy the link to download the latest Linux binary from our [releases page](https://github.com/cdr/code-server/releases)
1818

1919
---
2020

@@ -27,12 +27,12 @@ gcloud compute ssh --zone [region] [instance name]
2727

2828
- Find the latest Linux release from this URL:
2929
```
30-
https://github.com/codercom/code-server/releases/latest
30+
https://github.com/cdr/code-server/releases/latest
3131
```
3232

3333
- Replace {version} in the following command with the version found on the releases page and run it (or just copy the download URL from the releases page):
3434
```
35-
wget https://github.com/codercom/code-server/releases/download/{version}/code-server-{version}-linux-x64.tar.gz
35+
wget https://github.com/cdr/code-server/releases/download/{version}/code-server-{version}-linux-x64.tar.gz
3636
```
3737

3838
- Extract the downloaded tar.gz file with this command, for example:
@@ -68,4 +68,4 @@ sudo ./code-server -p 80
6868

6969
---
7070

71-
> NOTE: If you get stuck or need help, [file an issue](https://github.com/codercom/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).
71+
> NOTE: If you get stuck or need help, [file an issue](https://github.com/cdr/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).

doc/self-hosted/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Quickstart Guide
66

7-
> NOTE: If you get stuck or need help, [file an issue](https://github.com/codercom/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).
7+
> NOTE: If you get stuck or need help, [file an issue](https://github.com/cdr/code-server/issues/new?&title=Improve+self-hosted+quickstart+guide), [tweet (@coderhq)](https://twitter.com/coderhq) or [email](mailto:[email protected]?subject=Self-hosted%20quickstart%20guide).
88
99
This document pertains to Coder specific implementations of VS Code. For documentation on how to use VS Code itself, please refer to the official [documentation for VS Code](https://code.visualstudio.com/docs)
1010

@@ -17,7 +17,7 @@ It takes just a few minutes to get your own self-hosted server running. If you'v
1717
-->
1818

1919

20-
1. Visit [the releases](https://github.com/codercom/code-server/releases) page and download the latest cli for your operating system
20+
1. Visit [the releases](https://github.com/cdr/code-server/releases) page and download the latest cli for your operating system
2121
2. Double click the executable to run in the current directory
2222
3. Copy the password that appears in the cli<img src="../assets/cli.png">
2323
4. In your browser navigate to `localhost:8443`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coder/code-server",
3-
"repository": "https://github.com/codercom/code-server",
3+
"repository": "https://github.com/cdr/code-server",
44
"author": "Coder",
55
"license": "MIT",
66
"description": "Run VS Code remotely.",

packages/server/src/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ const bold = (text: string | number): string | number => {
190190
}
191191

192192
// TODO: fill in appropriate doc url
193-
logger.info("Additional documentation: http://github.com/codercom/code-server");
193+
logger.info("Additional documentation: http://github.com/cdr/code-server");
194194
logger.info("Initializing", field("data-dir", dataDir), field("extensions-dir", extensionsDir), field("working-dir", workingDir), field("log-dir", logDir));
195195
const sharedProcess = new SharedProcess(dataDir, extensionsDir, builtInExtensionsDir);
196196
const sendSharedProcessReady = (socket: WebSocket): void => {
@@ -298,7 +298,7 @@ const bold = (text: string | number): string | number => {
298298
if (!options.certKey && !options.cert) {
299299
logger.warn("No certificate specified. \u001B[1mThis could be insecure.");
300300
// TODO: fill in appropriate doc url
301-
logger.warn("Documentation on securing your setup: https://github.com/codercom/code-server/blob/master/doc/security/ssl.md");
301+
logger.warn("Documentation on securing your setup: https://github.com/cdr/code-server/blob/master/doc/security/ssl.md");
302302
}
303303

304304
if (!options.noAuth && !usingCustomPassword) {

packages/vscode/src/fill/product.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Product implements IProductConfiguration {
1111
public introductoryVideosUrl = "https://code.visualstudio.com/docs/getstarted/introvideos";
1212
public tipsAndTricksUrl = "https://code.visualstudio.com/docs/getstarted/tips-and-tricks";
1313
public twitterUrl = "https://twitter.com/code";
14-
public licenseUrl = "https://github.com/codercom/code-server/blob/master/LICENSE";
14+
public licenseUrl = "https://github.com/cdr/code-server/blob/master/LICENSE";
1515
public aiConfig = process.env.DISABLE_TELEMETRY ? undefined! : {
1616
// Only needed so vscode can see that content exists for this value.
1717
// We override the application insights module.

0 commit comments

Comments
 (0)