summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-23 12:38:46 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-23 12:38:46 -0700
commit986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6 (patch)
treef8b178237a928c1a7af687636579a6dc0a6c48d7 /.vscode/launch.json
parent0ad32bd6dfaf96af0a2db82fb2b06c200e131e62 (diff)
downloadsncontinue-986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6.tar.gz
sncontinue-986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6.tar.bz2
sncontinue-986e3c57a0e3a9c71e6bff5488d1bcda80cbf4c6.zip
documentation
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json17
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
+ }
+ ]
+}