-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdevcontainer.json
More file actions
executable file
·115 lines (115 loc) · 2.89 KB
/
devcontainer.json
File metadata and controls
executable file
·115 lines (115 loc) · 2.89 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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet
{
"name": "spacesdk-client",
"image": "mcr.microsoft.com/devcontainers/python:1-3.10-bullseye",
"runArgs": [
"--name=spacesdk-client"
],
"workspaceFolder": "/workspace/spacesdk-client",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace/spacesdk-client,type=bind,consistency=cached",
"features": {
"ghcr.io/microsoft/azure-orbital-space-sdk/spacefx-dev:0.11.0-nightly": {
"app_name": "spacesdk-client",
"app_type": "spacesdk-client",
"dev_language": "python"
}
},
"hostRequirements": {
"cpus": 8,
"memory": "8gb"
},
"customizations": {
"vscode": {
"extensions": [
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"DavidAnson.vscode-markdownlint",
"zxh404.vscode-proto3",
"mutantdino.resourcemonitor",
"josefpihrt-vscode.roslynator",
"bierner.markdown-mermaid",
"ms-python.python",
"ms-python.vscode-pylance"
]
},
// Grant permissions to the Azure Orbital Space SDK repositories and their packages
"codespaces": {
"repositories": {
"microsoft/azure-orbital-space-sdk": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-setup": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-coresvc-registry": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-coresvc-fileserver": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-coresvc-switchboard": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-platform-mts": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-platform-deployment": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-vth": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-hostsvc-link": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-hostsvc-logging": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-hostsvc-position": {
"permissions": {
"contents": "read",
"packages": "read"
}
},
"microsoft/azure-orbital-space-sdk-hostsvc-sensor": {
"permissions": {
"contents": "read",
"packages": "read"
}
}
}
}
},
"remoteUser": "root"
}