@@ -8,11 +8,10 @@ For other community resources, see our
8
8
[ Github discussions] ( https://github.com/coder/coder/discussions ) , or join our
9
9
[ Discord server] ( https://discord.gg/coder ) .
10
10
11
- ### How do I add an enterprise license?
11
+ ### How do I add a Premium trial license?
12
12
13
13
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.
16
15
17
16
You can add a license through the UI or CLI.
18
17
@@ -34,7 +33,7 @@ If the license is in a file:
34
33
coder licenses add -f < path/filename>
35
34
```
36
35
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
38
37
39
38
The primary developer use case is a local IDE connecting over SSH to a Coder
40
39
workspace.
@@ -262,7 +261,7 @@ parameters/resources:
262
261
` ` ` tf
263
262
# template1/main.tf
264
263
module "central-coder-module" {
265
- source = "github.com/yourorg /central-coder-module"
264
+ source = "github.com/org /central-coder-module"
266
265
myparam = "custom-for-template1"
267
266
}
268
267
@@ -273,7 +272,7 @@ resource "ebs_volume" "custom_template1_only_resource" {
273
272
` ` ` tf
274
273
# template2/main.tf
275
274
module "central-coder-module" {
276
- source = "github.com/yourorg /central-coder-module"
275
+ source = "github.com/org /central-coder-module"
277
276
myparam = "custom-for-template2"
278
277
myparam2 = "bar"
279
278
}
@@ -357,18 +356,16 @@ Artifactory.
357
356
- [Blog post](https://coder.com/blog/running-a-private-vs-code-extension-marketplace)
358
357
- [OSS project](https://github.com/coder/code-marketplace)
359
358
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)
361
360
where the agent specifies the URL and config environment variables which
362
361
code-server picks up and points the developer to.
363
362
364
363
Another option is to use Microsoft's code-server - which is like Coder's, but it
365
364
can connect to Microsoft's extension marketplace so Copilot and chat can be
366
365
retrieved there.
367
- [See a sample template here](https://github.com/sharkymark/v2-templates/blob/main/vs-code-server/main.tf).
368
366
369
367
Another option is to use VS Code Desktop (local) and that connects to
370
368
Microsoft's marketplace.
371
- https://github.com/sharkymark/v2-templates/blob/main/vs-code-server/main.tf
372
369
373
370
> Note: these are example templates with no SLAs on them and are not guaranteed
374
371
> for long-term support.
@@ -398,7 +395,7 @@ Start Colima with specific compute options:
398
395
colima start --cpu 4 --memory 8
399
396
` ` `
400
397
401
- Starting Colima on a M3 Macbook Pro :
398
+ Starting Colima on a M3 MacBook Pro :
402
399
403
400
` ` ` sh
404
401
colima start --arch x86_64 --cpu 4 --memory 8 --disk 10
0 commit comments