-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
55 lines (55 loc) · 1.54 KB
/
devcontainer.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"hostRequirements": {
"cpus": 4
},
"waitFor": "onCreateCommand",
"updateContentCommand": "pip install -r requirements.txt",
"postCreateCommand": "",
"postAttachCommand": {
"server": "flask --debug run"
},
"portsAttributes": {
"5000": {
"label": "Application",
"onAutoForward": "openPreview"
}
},
"customizations": {
"vscode": {
"settings": {
"files.autoSave": "onFocusChange",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"editor.fontSize": 18,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"window.restoreWindows": "preserve",
"workbench.editorAssociations": {
"*.md": "vscode.markdown.preview.editor"
}
},
"extensions": [
"McCarter.start-git-bash",
"yy0931.vscode-sqlite3-editor",
"medo64.render-crlf",
"ecmel.vscode-html-css",
"ms-vscode.js-debug",
"dbaeumer.vscode-eslint",
"miramac.vscode-exec-node",
"oderwat.indent-rainbow",
"ritwickdey.LiveServer",
"tomoki1207.pdf",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-wsl",
"GitHub.codespaces",
"ms-vscode-remote.remote-wsl",
"ms-azuretools.vscode-docker"
]
}
},
"forwardPorts": [5000]
}