summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-24 01:00:42 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-24 01:00:42 -0700
commit2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670 (patch)
tree6c1077859938fadce3a6f17f267127a66fd11df4 /.vscode/launch.json
parent59c549a468abd40207f8dc46eacdc0e02bbe21ad (diff)
parent82b03aeb0882cb884c398104b7934d63c6ceed00 (diff)
downloadsncontinue-2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670.tar.gz
sncontinue-2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670.tar.bz2
sncontinue-2e376b7e61f68a48ccb2a5be7ab6ab55ab30c670.zip
Merge branch 'main' into show-react-immediately
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
+ }
+ ]
+}