File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ __pycache__
2121# LocalStack
2222
2323volume /
24- .idea
24+ .idea /
25+ .vscode /
2526
2627cdk.context.json
28+ app-state.zip *
Original file line number Diff line number Diff line change @@ -22,7 +22,12 @@ load-state: ## Load the application state from a local file
2222clean : # # Clean up any temporary files
2323 rm * .zip
2424
25- hot-reload :
25+ hot-reload : # # Reconfigure the Lambda function to enable hot reloading
2626 awslocal lambda update-function-code --function-name ScoringFunction --s3-bucket hot-reload --s3-key " $$ (pwd)/lambdas/scoring"
2727
28+ start-debug : # # Start LocalStack with Lambda debug mode enabled
29+ DEBUG=1 LOCALSTACK_LAMBDA_DEBUG_MODE=1 \
30+ LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH=/tmp/debug_config.yml \
31+ localstack start --volume $$(pwd ) /etc/debug-config.yml :/tmp/debug_config.yml
32+
2833.PHONY : usage deploy web save-state load-state clean
Original file line number Diff line number Diff line change 1+ functions :
2+ arn:aws:lambda:us-east-1:000000000000:function:ListPublicQuizzesFunction :
3+ debug-port : 19891
You can’t perform that action at this time.
0 commit comments