-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject Minerva.code-workspace
More file actions
134 lines (134 loc) · 3.07 KB
/
Project Minerva.code-workspace
File metadata and controls
134 lines (134 loc) · 3.07 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"folders": [
{
"path": "."
}
],
"settings": {
"claudeCode.allowDangerouslySkipPermissions": false,
// "claudeCode.environmentVariables": [
// {
// "name": "ANTHROPIC_BASE_URL",
// "value": "http://localhost:1234"
// },
// {
// "name": "ANTHROPIC_AUTH_TOKEN",
// "value": "lmstudio"
// }
// ],
"rust-analyzer.cargo.target": "aarch64-unknown-linux-gnu",
"rust-analyzer.checkOnSave.extraArgs": [
"--target",
"aarch64-unknown-linux-gnu"
],
"rust-analyzer.linkedProjects": [
"./Cargo.toml"
],
"terminal.integrated.defaultProfile.linux": "bash",
"editor.formatOnSave": true,
"files.watcherExclude": {
"**/target/**": true
},
"claudeCode.usePythonEnvironment": false
},
"extensions": {
"recommendations": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"ms-vscode.makefile-tools",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-ssh"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Build (ARM64)",
"type": "shell",
"command": "make build",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"panel": "shared",
"reveal": "always"
},
"problemMatcher": "$rustc"
},
{
"label": "Run QEMU",
"type": "shell",
"command": "make run",
"group": "test",
"presentation": {
"panel": "dedicated",
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "Run QEMU (KVM)",
"type": "shell",
"command": "make run-kvm",
"group": "test",
"presentation": {
"panel": "dedicated",
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "SSH into QEMU",
"type": "shell",
"command": "make ssh",
"presentation": {
"panel": "dedicated",
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "Deploy to CM5",
"type": "shell",
"command": "make deploy",
"presentation": {
"panel": "shared",
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "Deploy binaries only",
"type": "shell",
"command": "make deploy-bins",
"presentation": {
"panel": "shared",
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "Build OS Image",
"type": "shell",
"command": "make image",
"presentation": {
"panel": "shared",
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "Check deps",
"type": "shell",
"command": "make check-deps",
"presentation": {
"panel": "shared",
"reveal": "always"
},
"problemMatcher": []
}
]
}
}