aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2025-06-02 10:43:48 +0900
committerDavid Timber <dxdt@dev.snart.me>2025-06-02 11:53:40 +0900
commit35f2ceaa417262bab002067e65b6a84389a199e0 (patch)
tree50f515cebed7ec2568c6d03abf50a065d333d9fe /.vscode/launch.json
parent17d3e1285b9507a99c0d903a2716ca43831d98ee (diff)
Add mmfwd.recsync ...
Encode and upload recordings to S3. Requires awscli installed and configured. Set destination S3 prefix using env var. Invocation: python -m mmfwd.recsync
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/"
+ }
}
]
}