8000 feat(.devcontainer): add cursor, filebrowser, windsurf and zed by mafredri · Pull Request #18608 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat(.devcontainer): add cursor, filebrowser, windsurf and zed #18608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 26, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
not supported
  • Loading branch information
mafredri committed Jun 26, 2025
commit be093004883a407ad70a00f00d8cb84a29b7a960
26 changes: 14 additions & 12 deletions dogfood/coder/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -328,21 +328,23 @@ module "coder-login" {
}

module "cursor" {
count = data.coder_workspace.me.start_count
source = "dev.registry.coder.com/coder/cursor/coder"
version = "1.1.0"
agent_id = coder_agent.dev.id
agent_name = "dev"
folder = local.repo_dir
count = data.coder_workspace.me.start_count
source = "dev.registry.coder.com/coder/cursor/coder"
version = "1.1.0"
agent_id = coder_agent.dev.id
# Not supported yet.
# agent_name = "dev"
folder = local.repo_dir
}

module "windsurf" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windsurf/coder"
version = "1.0.0"
agent_id = coder_agent.dev.id
agent_name = "dev"
folder = local.repo_dir
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windsurf/coder"
version = "1.0.0"
agent_id = coder_agent.dev.id
# Not supported yet.
# agent_name = "dev"
folder = local.repo_dir
}

module "zed" {
Expand Down
Loading
0