aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json13
1 files changed, 12 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 1a65bdf..04398d4 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,11 +5,22 @@
"version": "0.2.0",
"configurations": [
{
- "name": "Python Debugger: Module",
+ "name": "Python Debugger: Module mmfwd",
"type": "debugpy",
"request": "launch",
"module": "mmfwd",
"cwd": "${workspaceFolder}/src",
+ },
+ {
+ "name": "Python Debugger: Module mmfwd.recsync",
+ "type": "debugpy",
+ "request": "launch",
+ "module": "mmfwd.recsync",
+ "cwd": "${workspaceFolder}/src",
+ "env": {
+ // your s3 prefix here, with or without trailing slash
+ "MMFWD_RECSYNC_S3_UPLOAD_PREFIX": "s3://.../mmfwd/rec/"
+ }
}
]
}