@amazon-codecatalyst/blueprints.sam-serverless-application
Version:
This blueprint creates a project that leverages a serverless application model (SAM) to quickly create and deploy an API. You can choose Java, TypeScript, or Python as the programming language
22 lines (21 loc) • 604 B
JSON
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Launch and Attach)",
"request": "attach",
"hostName": "localhost",
"port": 8000,
"preLaunchTask": "mvn: debug tests"
},
{
"name": "Launch local sam API",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/{{lambdaFunctionName}}/HelloWorldFunction",
"preLaunchTask": "sam: start api"
}
]
}