diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-23 12:38:46 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-23 12:38:46 -0700 |
commit | 986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6 (patch) | |
tree | f8b178237a928c1a7af687636579a6dc0a6c48d7 /.vscode/launch.json | |
parent | 0ad32bd6dfaf96af0a2db82fb2b06c200e131e62 (diff) | |
download | sncontinue-986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6.tar.gz sncontinue-986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6.tar.bz2 sncontinue-986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6.zip |
documentation
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 + } + ] +} |