'1'
Browse files- .vscode/1.cmd +4 -0
- .vscode/1.py +0 -0
- .vscode/launch.json +3 -2
- .vscode/tasks.json +11 -0
.vscode/1.cmd
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@echo off
|
2 |
+
cd ..
|
3 |
+
call gitpull.cmd
|
4 |
+
start https://huggingface.co/spaces/fengfeng2/QiLinWu
|
.vscode/1.py
ADDED
File without changes
|
.vscode/launch.json
CHANGED
@@ -8,8 +8,9 @@
|
|
8 |
"name": "Python 调试程序: 当前文件",
|
9 |
"type": "debugpy",
|
10 |
"request": "launch",
|
11 |
-
"program": "${
|
12 |
-
"console": "integratedTerminal"
|
|
|
13 |
}
|
14 |
]
|
15 |
}
|
|
|
8 |
"name": "Python 调试程序: 当前文件",
|
9 |
"type": "debugpy",
|
10 |
"request": "launch",
|
11 |
+
"program": "${workspaceFolder}/.vscode/1.py",
|
12 |
+
"console": "integratedTerminal",
|
13 |
+
"preLaunchTask": "task"
|
14 |
}
|
15 |
]
|
16 |
}
|
.vscode/tasks.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"tasks": [
|
3 |
+
{
|
4 |
+
"type": "cppbuild",
|
5 |
+
"label": "task",
|
6 |
+
"command": "cd .vscode && 1.cmd",
|
7 |
+
"args": [],
|
8 |
+
}
|
9 |
+
],
|
10 |
+
"version": "2.0.0"
|
11 |
+
}
|