Skip to content

Commit dc355b9

Browse files
committed
Add launch json for debugging in vs code
1 parent 1cad73c commit dc355b9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Используйте IntelliSense, чтобы узнать о возможных атрибутах.
3+
// Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов.
4+
// Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Docker remote proxy",
9+
"type": "python",
10+
"request": "launch",
11+
"program": "src/main.py",
12+
"console": "integratedTerminal",
13+
"justMyCode": true
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)