diff --git a/.gitignore b/.gitignore index edd3ae5f..83643b2b 100644 --- a/.gitignore +++ b/.gitignore @@ -8,13 +8,17 @@ tests/test.dummy.py *.swp tmp profiler.* -.vscode +.vscode/* +!.vscode/launch.json .idea docs/html experiments sandbox !tests/sandbox +# VizTracker default file +result.json + # C extensions *.so diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..17b8a08d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,46 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "justMyCode": true, + },{ + "name": "Python: Test Player", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["-p", "tmp/test.input.bin"] + },{ + "name": "Python: TTk Designer", + "type": "python", + "request": "launch", + "module": "ttkDesigner", + "console": "integratedTerminal", + "justMyCode": true, + },{ + "name": "Python: Demo", + "type": "python", + "request": "launch", + "program": "demo/demo.py", + "console": "integratedTerminal", + "justMyCode": true + },{ + "name": "Python: Demo Mouse tracking", + "type": "python", + "request": "launch", + "program": "demo/demo.py", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["-t"] + }, + ] +} \ No newline at end of file