We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e63343 commit aa74bf2Copy full SHA for aa74bf2
.gitignore
@@ -6,7 +6,6 @@ __pycache__/
6
7
# Editor specific configs
8
.vim
9
-.vscode
10
.idea
11
12
# C extensions
.vscode/launch.json
@@ -0,0 +1,18 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "gfi:debugger",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${workspaceFolder}/venv/bin/gfi",
+ "args": ["search","facebook"],
+ "console": "integratedTerminal",
+ "python": "${workspaceFolder}/venv/bin/python",
+ "cwd": "${workspaceFolder}",
13
+ "env": {
14
+ "PYTHONPATH": "${workspaceFolder}"
15
+ }
16
17
+ ]
18
+}
0 commit comments