From f7f025343f005c11ac207ac6fcbb7b9bbe27a30c Mon Sep 17 00:00:00 2001 From: Michael Suchacz <203725896+ibetitsmike@users.noreply.github.com> Date: Tue, 3 Feb 2026 16:46:06 +0100 Subject: [PATCH] chore(dogfood): add project to mux module (#21894) Adds `add-project` to the `mux` module in the dogfood Coder template so Mux opens the cloned repo by default. - Uses `local.repo_dir` (defaults to `/home/coder/coder`) so it stays correct if the repo base dir parameter changes. Testing: - `terraform fmt -check dogfood/coder/main.tf` --- dogfood/coder/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 3e78ea3a1d..a8810fc71e 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -379,6 +379,7 @@ module "mux" { agent_id = coder_agent.dev.id subdomain = true display_name = "Mux" + add-project = local.repo_dir } module "code-server" {