diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-24 01:31:54 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-24 01:31:54 -0700 |
commit | 96b3f2c15de5f7cdab646323b65a92aeeb08ae17 (patch) | |
tree | 0c6235df9885079de82e5c392042eb2c7aae088c /.vscode/launch.json | |
parent | dac960348a938552de4a6fcfaff32e517e6ebcb1 (diff) | |
parent | 6efe8ce9db21f1991dc1b5cc68657f419afca825 (diff) | |
download | sncontinue-96b3f2c15de5f7cdab646323b65a92aeeb08ae17.tar.gz sncontinue-96b3f2c15de5f7cdab646323b65a92aeeb08ae17.tar.bz2 sncontinue-96b3f2c15de5f7cdab646323b65a92aeeb08ae17.zip |
Merge branch 'main' into config-py
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..cc7b1ce4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // 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: Module", + "type": "python", + "request": "launch", + "module": "continuedev.src.continuedev.server.main", + "args": ["--port", "8001"], + "justMyCode": false, + "subProcess": false + } + ] +} |