Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"github.vscode-github-actions"
]
}
72 changes: 72 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,78 @@
// 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",
"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",
Expand Down
53 changes: 53 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"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",
"github-actions.workflows.pinned.refresh.enabled": true,
"github-actions.use-enterprise": true
}
Loading