Created
December 17, 2017 02:53
-
-
Save lucasklaassen/6b09ae7ee5542f2a69c494a66362fc4b to your computer and use it in GitHub Desktop.
serverless debugging in vscode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Serverless", | |
"program": "${workspaceFolder}/node_modules/.bin/sls", | |
"cwd": "${workspaceFolder}", | |
"args": [ | |
"offline", | |
"start", | |
"--stage=development", | |
"--region=us-west-2", | |
"--host=localhost", | |
"--port=3000", | |
"--noTimeout" | |
], | |
"sourceMaps": true, | |
"smartStep": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment