-
Notifications
You must be signed in to change notification settings - Fork 5
/
.devcontainer.json
44 lines (44 loc) · 1.01 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
{
"name": "MANTIS",
"hostRequirements": {
"memory": "20gb",
"cpus": 8
},
"customizations": {
"vscode": {
"extensions": [
"mkhl.direnv",
"GitHub.copilot",
"bbenoist.Nix",
"bierner.markdown-mermaid",
"bpruitt-goddard.mermaid-markdown-syntax-highlighting",
"humao.rest-client",
"jebbs.plantuml",
"yzhang.markdown-all-in-one",
"ms-python.python",
"ms-python.vscode-pylance"
],
"settings": {
"remote.autoForwardPorts": true,
"workbench.iconTheme": "vscode-icons",
"files.watcherExclude": {
"**/target/**": true,
"**/result/**": true
}
}
}
},
"portsAttributes": {
"8000": {
"label": "MANTIS Blackbox",
"onAutoForward": "notify",
"protocol": "http"
}
},
"remoteEnv": {
"NIXPKGS_ALLOW_UNFREE": "1"
},
"image": "ghcr.io/cachix/devenv:latest",
"overrideCommand": false,
"updateContentCommand": "nix flake update"
}