Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 57fd2a9

Browse files
committed
Update VSCode settings and improve documentation
- Added additional terms to ensure accurate spell-checking. - Updated regex examples for clarity in documentation. - Adjusted FAQs for correct terminology and consistency.
1 parent 88bb9fb commit 57fd2a9

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"bodyclose",
1212
"buildinfo",
1313
"buildname",
14+
"Caddyfile",
1415
"circbuf",
1516
"cliflag",
1617
"cliui",
@@ -44,6 +45,7 @@
4445
"embeddedpostgres",
4546
"enablements",
4647
"enterprisemeta",
48+
"Entra",
4749
"errgroup",
4850
"eventsourcemock",
4951
"externalauth",
@@ -52,11 +54,13 @@
5254
"filebrowser",
5355
"Formik",
5456
"gitauth",
57+
"Gitea",
5558
"gitsshkey",
5659
"goarch",
5760
"gographviz",
5861
"goleak",
5962
"gonet",
63+
"googleclouddns",
6064
"gossh",
6165
"gsyslog",
6266
"GTTY",
@@ -111,6 +115,7 @@
111115
"provisionerd",
112116
"provisionerdserver",
113117
"provisionersdk",
118+
"psql",
114119
"ptrace",
115120
"ptty",
116121
"ptys",
@@ -175,6 +180,7 @@
175180
"walkthrough",
176181
"weblinks",
177182
"webrtc",
183+
"websockets",
178184
"wgcfg",
179185
"wgconfig",
180186
"wgengine",

docs/admin/external-auth.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ CODER_EXTERNAL_AUTH_0_ID=primary-github
190190
CODER_EXTERNAL_AUTH_0_TYPE=github
191191
CODER_EXTERNAL_AUTH_0_CLIENT_ID=xxxxxx
192192
CODER_EXTERNAL_AUTH_0_CLIENT_SECRET=xxxxxxx
193-
CODER_EXTERNAL_AUTH_0_REGEX=github.com/orgname
193+
CODER_EXTERNAL_AUTH_0_REGEX=github.com/org
194194
195195
# Provider 2) github.example.com
196196
CODER_EXTERNAL_AUTH_1_ID=secondary-github
@@ -203,8 +203,8 @@ CODER_EXTERNAL_AUTH_1_TOKEN_URL="https://github.example.com/login/oauth/access_t
203203
CODER_EXTERNAL_AUTH_1_VALIDATE_URL="https://github.example.com/api/v3/user"
204204
```
205205

206-
To support regex matching for paths (e.g. github.com/orgname), you'll need to
207-
add this to the
206+
To support regex matching for paths (e.g. github.com/org), you'll need to add
207+
this to the
208208
[Coder agent startup script](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#startup_script):
209209

210210
```shell

docs/tutorials/faqs.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ For other community resources, see our
88
[Github discussions](https://github.com/coder/coder/discussions), or join our
99
[Discord server](https://discord.gg/coder).
1010

11-
### How do I add an enterprise license?
11+
### How do I add a Premium trial license?
1212

1313
Visit https://coder.com/trial or contact
14-
[[email protected]](mailto:[email protected]?subject=License) to get a v2 enterprise
15-
trial key.
14+
[[email protected]](mailto:[email protected]?subject=License) to get a trial key.
1615

1716
You can add a license through the UI or CLI.
1817

@@ -34,7 +33,7 @@ If the license is in a file:
3433
coder licenses add -f <path/filename>
3534
```
3635

37-
### I'm experiencing networking issues, so want to disable Tailscale, STUN, Direct connections and force use of websockets
36+
### I'm experiencing networking issues, so want to disable Tailscale, STUN, Direct connections and force use of websocket
3837

3938
The primary developer use case is a local IDE connecting over SSH to a Coder
4039
workspace.
@@ -262,7 +261,7 @@ parameters/resources:
262261
```tf
263262
# template1/main.tf
264263
module "central-coder-module" {
265-
source = "github.com/yourorg/central-coder-module"
264+
source = "github.com/org/central-coder-module"
266265
myparam = "custom-for-template1"
267266
}
268267
@@ -273,7 +272,7 @@ resource "ebs_volume" "custom_template1_only_resource" {
273272
```tf
274273
# template2/main.tf
275274
module "central-coder-module" {
276-
source = "github.com/yourorg/central-coder-module"
275+
source = "github.com/org/central-coder-module"
277276
myparam = "custom-for-template2"
278277
myparam2 = "bar"
279278
}
@@ -357,18 +356,16 @@ Artifactory.
357356
- [Blog post](https://coder.com/blog/running-a-private-vs-code-extension-marketplace)
358357
- [OSS project](https://github.com/coder/code-marketplace)
359358

360-
[See this example template](https://github.com/sharkymark/v2-templates/blob/main/code-marketplace/main.tf#L229C1-L232C12)
359+
[See this example template](https://github.com/sharkymark/v2-templates/blob/main/src/code-marketplace/main.tf#L229C1-L232C12)
361360
where the agent specifies the URL and config environment variables which
362361
code-server picks up and points the developer to.
363362

364363
Another option is to use Microsoft's code-server - which is like Coder's, but it
365364
can connect to Microsoft's extension marketplace so Copilot and chat can be
366365
retrieved there.
367-
[See a sample template here](https://github.com/sharkymark/v2-templates/blob/main/vs-code-server/main.tf).
368366

369367
Another option is to use VS Code Desktop (local) and that connects to
370368
Microsoft's marketplace.
371-
https://github.com/sharkymark/v2-templates/blob/main/vs-code-server/main.tf
372369

373370
> Note: these are example templates with no SLAs on them and are not guaranteed
374371
> for long-term support.
@@ -398,7 +395,7 @@ Start Colima with specific compute options:
398395
colima start --cpu 4 --memory 8
399396
```
400397

401-
Starting Colima on a M3 Macbook Pro:
398+
Starting Colima on a M3 MacBook Pro:
402399

403400
```sh
404401
colima start --arch x86_64 --cpu 4 --memory 8 --disk 10

0 commit comments

Comments
 (0)