1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| C:\tmp\hello-world>sam local start-api --skip-pull-image Mounting HelloWorldFunction at http://127.0.0.1:3000/hello [GET] You can now browse to the above endpoints to invoke your functions. You do not need to restart/reload SAM CLI while working on your functions, changes will be reflected instantly/automatically. You only need to restart SAM CLI if you update your AWS SAM template 2020-09-21 13:40:36 * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit) 2020-09-21 13:40:41 127.0.0.1 - - [21/Sep/2020 13:40:41] "GET / HTTP/1.1" 403 - 2020-09-21 13:40:41 127.0.0.1 - - [21/Sep/2020 13:40:41] "GET /favicon.ico HTTP/1.1" 403 - Invoking app.lambdaHandler (nodejs12.x) Requested to skip pulling images ...
Mounting C:\tmp\hello-world\.aws-sam\build\HelloWorldFunction as /var/task:ro,delegated inside runtime container START RequestId: 00b5b190-1c8d-184f-5ab5-c0e0764041d3 Version: $LATEST END RequestId: 00b5b190-1c8d-184f-5ab5-c0e0764041d3 REPORT RequestId: 00b5b190-1c8d-184f-5ab5-c0e0764041d3 Init Duration: 438.88 ms Duration: 4.53 ms Billed Duration: 100 ms Memory Size: 128 MB Max Memory Used: 44 MB No Content-Type given. Defaulting to 'application/json'. 2020-09-21 13:40:48 127.0.0.1 - - [21/Sep/2020 13:40:48] "GET /hello HTTP/1.1" 200 - 2020-09-21 13:40:48 127.0.0.1 - - [21/Sep/2020 13:40:48] "GET /favicon.ico HTTP/1.1" 403 -
|