Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 650 Bytes

README.md

File metadata and controls

46 lines (38 loc) · 650 Bytes

serverless-seed

Getting started

After cloning run the below commands to get everything installed:

npm run globals
npm install

Basic commands

To build:

npm run build

To run service (it will start in debug mode):

npm run start

To test:

npm run test

To test and debug:

npm run testdebug

To generate code coverage (reports will be under the coverage folder):

npm run cover

To deploy:

npm run deploy [-- --stage <stage>]

VSCode Debugging

add the following lines to the .vscode/launch.json file:

"sourceMaps": true,
"outDir": "${workspaceRoot}/build",