-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
36 lines (36 loc) · 1.25 KB
/
.devcontainer.json
File metadata and controls
36 lines (36 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"image": "ghcr.io/rails/devcontainer/images/ruby:3.3.5",
"features": {
"ghcr.io/michidk/devcontainers-features/bun:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/duduribeiro/devcontainer-features/neovim:1": {
"version": "nightly"
},
"ghcr.io/georgofenbeck/features/lazygit-linuxbinary:1": {},
"ghcr.io/anthropics/devcontainer-features/claude-code:1.0": {},
"ghcr.io/rails/devcontainer/features/activestorage": {},
"ghcr.io/devcontainers/features/node:1": {}
},
"mounts": [
"source=${localEnv:HOME}/.claude,target=/home/vscode/.claude,type=bind,consistency=cached",
"source=${localEnv:HOME}/.config/nvim,target=/home/vscode/.config/nvim,type=bind,consistency=cached"
],
"customizations": {
"vscode": {
"extensions": [
"Shopify.ruby-extensions-pack",
"testdouble.vscode-standard-ruby",
"manuelpuyol.erb-linter",
"Shopify.ruby-lsp",
"aki77.rails-db-schema",
"miguel-savignano.ruby-symbols",
"sibiraj-s.vscode-scss-formatter",
"Thadeu.vscode-run-rspec-file",
"Cronos87.yaml-symbols",
"aliariff.vscode-erb-beautify",
"PascalReitermann93.vscode-yaml-sort",
"Anthropic.claude-code"
]
}
}
}