We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6427033 commit eb9a71fCopy full SHA for eb9a71f
.devcontainer/devcontainer.json
@@ -1,26 +1,29 @@
1
{
2
+ "hostRequirements": {
3
+ "cpus": 4
4
+ },
5
+ "waitFor": "onCreateCommand",
6
+ "updateContentCommand": "pip install -r requirements.txt",
7
+ "postCreateCommand": "",
8
"postAttachCommand": {
- "server": "flask --debug run",
9
+ "server": "flask --debug run"
10
},
-
11
"portsAttributes": {
12
"5000": {
13
"label": "Application",
14
"onAutoForward": "openPreview"
15
}
16
17
"customizations": {
18
"codespaces": {
- "openFiles": ["app.py"]
19
+ "openFiles": [
20
+ "app.py"
21
+ ]
22
23
"vscode": {
24
"extensions": [
25
"ms-python.python"
26
]
27
- },
- "onCreateCommand": "pip install -r requirements.txt",
- "postCreateCommand": "",
- "hostRequirements": {"cpus": 4}
28
+ }
29
0 commit comments