-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasks.py
58 lines (38 loc) · 1.47 KB
/
tasks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import json
import pprint
import pathlib
import httpx
from invoke import task
@task
def setup(c):
local_lambda_emulator_path = "./.direnv/.aws-lambda-rie"
c.run(f"mkdir -p {local_lambda_emulator_path}")
lambda_emulator_url = "https://github.com/aws/aws-lambda-runtime-interface-emulator/releases/latest/download/aws-lambda-rie"
c.run(f"curl -Lo {local_lambda_emulator_path}/aws-lambda-rie {lambda_emulator_url}")
c.run(f"chmod +x {local_lambda_emulator_path}/aws-lambda-rie")
c.run("npm install")
c.run("npm run bootstrap")
@task
def run_lambda(c):
"""
Run the local lambda runtime emulator
"""
c.run("docker-compose up", pty=True)
@task
def local_event(c, method="GET", path="/items/"):
"""
Send an HTTP Gateway event to the lambda runtime emulator
"""
from aws_lambda_powertools.utilities.data_classes import APIGatewayProxyEventV2
http_event_dict = json.loads(pathlib.Path("event.json").read_text())
http_event_dict["requestContext"]["http"]["path"] = path
http_event_dict["requestContext"]["http"]["method"] = method
http_event = APIGatewayProxyEventV2(http_event_dict)
local_url = "http://localhost:9000/2015-03-31/functions/function/invocations"
response = httpx.post(local_url, json=http_event._data)
response.raise_for_status()
pprint.pprint(response.json())
@task
def deploy(c):
c.run("poetry export -f requirements.txt -o requirements.txt")
c.run("npm run deploy", pty=True)