-
Notifications
You must be signed in to change notification settings - Fork 69
/
.devcontainer.json
82 lines (82 loc) · 1.83 KB
/
.devcontainer.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "composable",
"hostRequirements": {
"memory": "20gb",
"cpus": 8
},
"build": {
"dockerfile": "Dockerfile",
"context": "."
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
},
"postStartCommand": "sudo chmod +x /home/vscode/.nix-profile/bin/setfacl && sudo chmod 1777 /tmp/ && sudo /home/vscode/.nix-profile/bin/setfacl --remove-default /tmp",
"customizations": {
"vscode": {
"extensions": [
"adam-bender.commit-message-editor",
"bbenoist.Nix",
"bierner.markdown-mermaid",
"bpruitt-goddard.mermaid-markdown-syntax-highlighting",
"eamodio.gitlens",
"GitHub.copilot",
"humao.rest-client",
"jebbs.plantuml",
"mkhl.direnv",
"ms-azuretools.vscode-docker",
"ms-vscode.makefile-tools",
"ms-vsliveshare.vsliveshare",
"rangav.vscode-thunder-client",
"rust-lang.rust-analyzer",
"serayuzgur.crates",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"vadimcn.vscode-lldb",
"vscode-icons-team.vscode-icons",
"yzhang.markdown-all-in-one",
"zxh404.vscode-proto3",
"mkhl.direnv"
]
}
},
"portsAttributes": {
"9988": {
"label": "Picasso",
"onAutoForward": "notify",
"protocol": "http"
},
"29988": {
"label": "Composable",
"onAutoForward": "notify",
"protocol": "http"
},
"9944": {
"label": "Kusama",
"onAutoForward": "notify",
"protocol": "http"
},
"29944": {
"label": "Polkadot",
"onAutoForward": "notify",
"protocol": "http"
},
"26657": {
"label": "Juno",
"onAutoForward": "notify",
"protocol": "http"
},
"8080": {
"label": "Hasura",
"onAutoForward": "notify",
"protocol": "http"
}
},
"settings": {
"remote.autoForwardPorts": true,
"workbench.iconTheme": "vscode-icons",
"files.watcherExclude": {
"**/target/**": true
}
},
}