File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,15 @@ composer-install-prod:
42
42
$(RUN ) composer install --prefer-dist --optimize-autoloader --no-dev
43
43
.PHONY : composer-install-prod
44
44
45
+ serverless-remove :
46
+ $(RUN ) serverless remove --stage dev
47
+ .PHONY : serverless-remove
48
+
49
+ # DEBUG
50
+ serverless-print :
51
+ $(RUN ) serverless print --stage dev
52
+ .PHONY : serverless-print
53
+
45
54
# LOCAL EXECUTION
46
55
function-test :
47
56
$(RUN ) serverless invoke local --stage dev -f function
@@ -50,4 +59,8 @@ function-test:
50
59
# CLOUD EXECUTION
51
60
function-invoke :
52
61
$(RUN ) serverless invoke --stage dev --function function --data " hello world"
53
- .PHONY : function-invoke
62
+ .PHONY : function-invoke
63
+
64
+ http-logs :
65
+ $(RUN ) serverless logs --stage dev --function http --tail
66
+ .PHONY : http-logs
You can’t perform that action at this time.
0 commit comments