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
commit5ffe03c3ee0dc160999a03d4efd50735cff5cdcf (patch)
treefe9c81ac462604b09056981af931ff0fa977a7af /.vscode/launch.json
parent32f9cc3412270cd906b5270cce8ccefc76165421 (diff)
downloadsncontinue-5ffe03c3ee0dc160999a03d4efd50735cff5cdcf.tar.gz
sncontinue-5ffe03c3ee0dc160999a03d4efd50735cff5cdcf.tar.bz2
sncontinue-5ffe03c3ee0dc160999a03d4efd50735cff5cdcf.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
+ }
+ ]
+}