mirror of https://git.tuxpa.in/a/code-server.git
Merge pull request #2906 from bpmct/rename-cloud
rename references of "coder could"
This commit is contained in:
commit
45a1713767
|
@ -57,7 +57,7 @@ Consider running code-server with the beta flag `--link` if you don't want to wo
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ code-server --link
|
$ code-server --link
|
||||||
Proxying code-server to Coder Cloud, you can access your IDE at https://valmar-jon.cdr.co
|
Proxying code-server, you can access your IDE at https://valmar-jon.cdr.co
|
||||||
```
|
```
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
|
|
|
@ -195,8 +195,8 @@ const options: Options<Required<Args>> = {
|
||||||
link: {
|
link: {
|
||||||
type: OptionalString,
|
type: OptionalString,
|
||||||
description: `
|
description: `
|
||||||
Securely bind code-server via Coder Cloud with the passed name. You'll get a URL like
|
Securely bind code-server via our cloud service with the passed name. You'll get a URL like
|
||||||
https://myname.coder-cloud.com at which you can easily access your code-server instance.
|
https://hostname-username.cdr.co at which you can easily access your code-server instance.
|
||||||
Authorization is done via GitHub.
|
Authorization is done via GitHub.
|
||||||
`,
|
`,
|
||||||
beta: true,
|
beta: true,
|
||||||
|
|
|
@ -24,7 +24,7 @@ function runAgent(...args: string[]): Promise<void> {
|
||||||
agent.on("close", (code) => {
|
agent.on("close", (code) => {
|
||||||
if (code !== 0) {
|
if (code !== 0) {
|
||||||
rej({
|
rej({
|
||||||
message: `coder cloud agent exited with ${code}`,
|
message: `--link agent exited with ${code}`,
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue