mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
chore: rename cmux to mux in the dogfood template (#20787)
<!-- If you have used AI to produce some or all of this PR, please ensure you have read our [AI Contribution guidelines](https://coder.com/docs/about/contributing/AI_CONTRIBUTING) before submitting. -->
This commit is contained in:
@@ -268,16 +268,16 @@ data "coder_parameter" "ide_choices" {
|
||||
form_type = "multi-select"
|
||||
mutable = true
|
||||
description = "Choose one or more IDEs to enable in your workspace"
|
||||
default = jsonencode(["vscode", "code-server", "cursor", "cmux"])
|
||||
default = jsonencode(["vscode", "code-server", "cursor", "mux"])
|
||||
option {
|
||||
name = "VS Code Desktop"
|
||||
value = "vscode"
|
||||
icon = "/icon/code.svg"
|
||||
}
|
||||
option {
|
||||
name = "cmux"
|
||||
value = "cmux"
|
||||
icon = "/icon/cmux.svg"
|
||||
name = "mux"
|
||||
value = "mux"
|
||||
icon = "/icon/mux.svg"
|
||||
}
|
||||
option {
|
||||
name = "code-server"
|
||||
@@ -375,9 +375,9 @@ module "personalize" {
|
||||
agent_id = coder_agent.dev.id
|
||||
}
|
||||
|
||||
module "cmux" {
|
||||
count = contains(jsondecode(data.coder_parameter.ide_choices.value), "cmux") ? data.coder_workspace.me.start_count : 0
|
||||
source = "registry.coder.com/coder/cmux/coder"
|
||||
module "mux" {
|
||||
count = contains(jsondecode(data.coder_parameter.ide_choices.value), "mux") ? data.coder_workspace.me.start_count : 0
|
||||
source = "registry.coder.com/coder/mux/coder"
|
||||
version = "1.0.0"
|
||||
agent_id = coder_agent.dev.id
|
||||
subdomain = true
|
||||
|
||||
@@ -21,7 +21,6 @@
|
||||
"centos.svg",
|
||||
"claude.svg",
|
||||
"clion.svg",
|
||||
"cmux.svg",
|
||||
"code-insiders.svg",
|
||||
"code.svg",
|
||||
"coder.svg",
|
||||
@@ -83,6 +82,7 @@
|
||||
"microsoft-teams.svg",
|
||||
"microsoft.svg",
|
||||
"mlflow.svg",
|
||||
"mux.svg",
|
||||
"nextflow.svg",
|
||||
"nexus-repository.svg",
|
||||
"nix.svg",
|
||||
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Reference in New Issue
Block a user