From d01bf0e540faf0fe6138d4f4a96cfc3173c49bfb Mon Sep 17 00:00:00 2001 From: moonrager13 Date: Wed, 1 Jul 2026 13:53:19 -0500 Subject: [PATCH 1/3] commit --- .vscode/launch.json | 64 +++++++++++++++++++++++++++++++++++++++++++ .vscode/settings.json | 51 ++++++++++++++++++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json index a5cc14660e..15c0777f50 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,70 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "type": "aws-sam", + "request": "direct-invoke", + "name": "Invoke Lambda with API Gateway", + "invokeTarget": { + "target": "api", + "templatePath": "Template Location", + "logicalId": "Function Logical ID" + }, + "api": { + "path": "Path", + "httpMethod": "Method", + "payload": { + "json": {} + } + } + }, + { + "type": "aws-sam", + "request": "direct-invoke", + "name": "Invoke Lambda", + "invokeTarget": { + "target": "template", + "templatePath": "Template Location", + "logicalId": "Function Logical ID" + }, + "lambda": { + "payload": { + "json": {} + } + } + }, + { + "type": "aws-sam", + "request": "direct-invoke", + "name": "Invoke Lambda with API Gateway", + "invokeTarget": { + "target": "api", + "templatePath": "Template Location", + "logicalId": "Function Logical ID" + }, + "api": { + "path": "Path", + "httpMethod": "Method", + "payload": { + "json": {} + } + } + }, + { + "type": "aws-sam", + "request": "direct-invoke", + "name": "Invoke Lambda", + "invokeTarget": { + "target": "template", + "templatePath": "Template Location", + "logicalId": "Function Logical ID" + }, + "lambda": { + "payload": { + "json": {} + } + } + }, { "type": "node", "request": "launch", diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..2294d002fd --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,51 @@ +{ + "workbench.editor.alwaysShowEditorActions": true, + "workbench.editor.autoLockGroups": { + "default": true, + "workbench.editor.chatSession": true, + "workbench.editor.chatDebug": true, + "workbench.editorinputs.searchEditorInput": true, + "agentSessionsWelcomePage": true, + "jupyter-notebook": true, + "notebookOutputEditor": true, + "github-issues": true, + "aws-redshift-sql-notebook": true, + "repl": true, + "workbench.editors.gettingStartedInput": true, + "vscode.markdown.editor": true, + "imagePreview.previewEditor": true, + "vscode.videoPreview": true, + "vscode.audioPreview": true, + "gitlens.rebase": true, + "workflowStudio.asl": true, + "mainThreadWebview-browserPreview": false + }, + "workbench.editor.centeredLayoutFixedWidth": true, + "workbench.editor.defaultBinaryEditor": "gitlens.rebase", + "workbench.editor.enablePreviewFromCodeNavigation": true, + "workbench.editor.enablePreviewFromQuickOpen": true, + "workbench.editor.highlightModifiedTabs": true, + "workbench.editor.limit.enabled": true, + "workbench.editor.limit.excludeDirty": true, + "workbench.editor.limit.perEditorGroup": true, + "workbench.editor.pinnedTabsOnSeparateRow": true, + "workbench.editor.preferHistoryBasedLanguageDetection": true, + "workbench.editor.revealIfOpen": true, + "workbench.editor.scrollToSwitchTabs": true, + "workbench.editor.sharedViewState": true, + "workbench.editor.showTabIndex": true, + "workbench.editor.wrapTabs": true, + "workbench.editor.useModal": "all", + "workbench.editor.markdownDefaultEditorInAgentsWindow": true, + "workbench.editor.closeOnFileDelete": true, + "gitlens.views.repositories.showIncomingActivity": true, + "gitlens.views.repositories.includeWorkingTree": true, + "gitlens.graph.showRemoteNames": true, + "gitlens.codeLens.scopes": [ + "document", + "containers", + "blocks" + ], + "gitlens.currentLine.format": "${author, }${agoOrDate}${' via 'pullRequest}${ • message|50?}", + "gitlens.currentLine.uncommittedChangesFormat": "✏️ ${ago" +} \ No newline at end of file From e4803fc4c5fd2a767344aa248e3acee2919f97de Mon Sep 17 00:00:00 2001 From: moonrager13 Date: Fri, 3 Jul 2026 02:08:35 -0500 Subject: [PATCH 2/3] commit & push --- .vscode/extensions.json | 5 +++++ .vscode/settings.json | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000000..884c643559 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "github.vscode-github-actions" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 2294d002fd..25bd5aa645 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -47,5 +47,7 @@ "blocks" ], "gitlens.currentLine.format": "${author, }${agoOrDate}${' via 'pullRequest}${ • message|50?}", - "gitlens.currentLine.uncommittedChangesFormat": "✏️ ${ago" + "gitlens.currentLine.uncommittedChangesFormat": "✏️ ${ago", + "github-actions.workflows.pinned.refresh.enabled": true, + "github-actions.use-enterprise": true } \ No newline at end of file From 336c7fb61eee45d24a51051844c675ad297801a4 Mon Sep 17 00:00:00 2001 From: moonrager13 Date: Fri, 3 Jul 2026 02:10:14 -0500 Subject: [PATCH 3/3] commit & push --- .vscode/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 15c0777f50..7776898526 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,14 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Embedded Debug", + "type": "embedded-debug", + "request": "launch", + "serialNumber": "${command:device-manager.getSerialNumber}", + "program": "${command:embedded-debug.getApplicationFile}", + "cmsisPack": "${command:device-manager.getDevicePack}" + }, { "type": "aws-sam", "request": "direct-invoke",