Skip to content

Commit aa74bf2

Browse files
committed
Add vscode debug config
1 parent 1e63343 commit aa74bf2

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ __pycache__/
66

77
# Editor specific configs
88
.vim
9-
.vscode
109
.idea
1110

1211
# C extensions

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "gfi:debugger",
6+
"type": "debugpy",
7+
"request": "launch",
8+
"program": "${workspaceFolder}/venv/bin/gfi",
9+
"args": ["search","facebook"],
10+
"console": "integratedTerminal",
11+
"python": "${workspaceFolder}/venv/bin/python",
12+
"cwd": "${workspaceFolder}",
13+
"env": {
14+
"PYTHONPATH": "${workspaceFolder}"
15+
}
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)