Skip to content

Commit da1205a

Browse files
committed
implements requests to tronalddump API from lambda function
1 parent 80cbe7d commit da1205a

File tree

5 files changed

+458
-96
lines changed

5 files changed

+458
-96
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ serverless-print: ## print generated serverless.yml with all populated values
4848
.PHONY: serverless-print
4949

5050
# INVOKE FUNCTIONS LOCALLY
51-
function-test:
51+
function-invoke-local:
5252
serverless invoke local --stage dev --function function --data "hello world"
53-
.PHONY: function-test
53+
.PHONY: function-invoke-local
5454

5555
# INVOKE FUNCTIONS ON AWS
56-
function-invoke:
56+
function-invoke-cloud:
5757
$(RUN) serverless invoke --stage dev --function function --data "hello world"
58-
.PHONY: function-invoke
58+
.PHONY: function-invoke-cloud
5959

6060
# MONITORING
6161
bref-dashboard:

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"php": "^7.4",
66
"ext-json": "*",
77
"bref/bref": "^0.5.24",
8-
"bref/logger": "^1.0.0"
8+
"bref/logger": "^1.0.0",
9+
"guzzlehttp/guzzle": "^6.5.3"
910
},
1011
"require-dev": {
1112
"friendsofphp/php-cs-fixer": "^2.16.3",

0 commit comments

Comments
 (0)