-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyWebLib.code-workspace
More file actions
46 lines (46 loc) · 1007 Bytes
/
Copy pathPyWebLib.code-workspace
File metadata and controls
46 lines (46 loc) · 1007 Bytes
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
{
"folders": [
{
"name": "PyWebLib",
"path": "."
}
],
"settings": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"liveServer.settings.port": 8000,
"liveServer.settings.root": "/"
},
"extensions": {
"recommendations": [
"ritwickdey.LiveServer"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Serve PyWebLib",
"detail": "python -m http.server 8000 (then open http://localhost:8000)",
"type": "shell",
"command": "python -m http.server 8000",
"presentation": {
"reveal": "always",
"panel": "dedicated",
"clear": true
},
"problemMatcher": [],
"runOptions": {
"instanceLimit": 1
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
}