From 35f2ceaa417262bab002067e65b6a84389a199e0 Mon Sep 17 00:00:00 2001 From: David Timber Date: Mon, 2 Jun 2025 10:43:48 +0900 Subject: 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 --- .vscode/launch.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to '.vscode/launch.json') 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/" + } } ] } -- cgit v1.2.3-70-g09d2