Skip to content

Commit 33dca8c

Browse files
committed
Refactor .gitignore and add .vscode/launch.json
1 parent 1ec1596 commit 33dca8c

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
*coverage*
33
ignored
44
*.h5
5-
*.json
65
!tests/files/json/*
76
!*.schema.json
87
!args.json

.vscode/launch.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python Debugger: Flask",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"module": "flask",
12+
"env": {
13+
"FLASK_APP": "beebop/app.py",
14+
"FLASK_DEBUG": "1",
15+
"STORAGE_LOCATION": "./storage"
16+
},
17+
"args": ["run", "--no-debugger", "--no-reload"],
18+
"jinja": true,
19+
"justMyCode": true
20+
},
21+
{
22+
"name": "rq worker",
23+
"request": "launch",
24+
"type": "debugpy",
25+
"program": "/home/athapar/miniconda3/envs/beebop_py/bin/rq",
26+
"args": ["worker"],
27+
"console": "integratedTerminal",
28+
"cwd": "${workspaceFolder}",
29+
"justMyCode": false
30+
}
31+
]
32+
}

tests/files/sketches/strep_sample.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)