forked from zauberzeug/nicegui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nicegui.code-workspace
46 lines (45 loc) · 894 Bytes
/
nicegui.code-workspace
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": [
{
"path": "."
}
],
"settings": {
"files.associations": {
"*.html": "jinja-html"
}
},
"extensions": {
"recommendations": [
"ms-python.vscode-pylance",
"ms-python.python",
"himanoa.python-autopep8",
"esbenp.prettier-vscode",
"littlefoxteam.vscode-python-test-adapter",
"cschleiden.vscode-github-actions",
"samuelcolvin.jinjahtml",
"ms-python.isort",
"Vue.volar"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "current file",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Dockerized NiceGUI",
"type": "python",
"request": "attach",
"connect": {
"port": 5678
}
}
]
}
}