Skip to content

Commit 1f8f4f8

Browse files
committed
add terraform, call lambda directly with next server action
1 parent 0f1f879 commit 1f8f4f8

File tree

111 files changed

+8606
-890
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+8606
-890
lines changed

.github/workflows/cd-lambda-function.yml

-67
This file was deleted.

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ npm-debug.log*
1111
yarn-debug.log*
1212
yarn-error.log*
1313
**/_*
14-
**/.next
14+
**/.next
15+
**.tfvars
16+
.terraform**

README.md

+12-30
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,14 @@ Stop drawing recursion trees by hand. Watch the [demo video](https://youtu.be/1f
1212

1313
### Folders structure
1414

15-
- `packages/web`: react user interface.
16-
- `packages/lambda`: serverless lambda function to execute user-defined code remotely.
17-
<!-- - `packages/common`: shared code between web and lambda -->
15+
- `web`: react user interface.
16+
- `lambda`: serverless lambda function to execute user-defined code remotely.
1817

1918
## Local development
2019

2120
### Web
2221

23-
In the `packages/web` directory, run:
22+
In the `web` directory, run:
2423

2524
```bash
2625
# to install all dependencies
@@ -34,7 +33,7 @@ $ npm run start
3433

3534
You can use the Amazon Runtime Interface Emulator (RIE), already contained in the docker image, to test the Lambda function.
3635

37-
In the `packages/lambda` directory, run:
36+
In the `lambda` directory, run:
3837

3938
```bash
4039
# build your local image
@@ -49,36 +48,19 @@ $ curl -XPOST "http://localhost:8080/2015-03-31/functions/function/invocations"
4948

5049
## Deploy to production
5150

52-
### Web
53-
54-
Set your API Gateway endpoint in `packages/web/src/config/api.ts`.
55-
56-
Ships `packages/web` on Vercel.
57-
5851
### Lambda
5952

60-
The deployment of the Lambda function is automatized by the workflow `cd-lambda-function`. You will need to complete the following set-up steps to use it:
61-
62-
1. Create the following **AWS resources**:
63-
64-
- Lambda function defined as a container image
65-
66-
- API Gateway to trigger the lambda function with CORS support
53+
In `terraform` folder:
6754

68-
- ECR repository to store your Docker images
55+
- create terraform.tfvars file
56+
- run `terraform init`
57+
- run `terraform validate`
58+
- run `terraform plan`
59+
- run `terraform apply`
6960

70-
- IAM user with the proper permissions
71-
72-
2. Store the IAM user access key in GitHub Actions secrets named `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`.
73-
74-
3. Change the workflow file `github/workflows/cd-lambda-function.yml`:
75-
76-
- Replace the value of the `AWS_REGION` env with the region of all your AWS resources.
77-
78-
- Replace the value of the `AWS_ECR_REPOSITORY_NAME` env with your repository's name.
79-
80-
- Replace the value of the `AWS_LAMBDA_FUNCTION_NAME` env with your function's name.
61+
### Web
8162

63+
Ships `web` on Vercel, setup environment variables.
8264

8365
## Acknowledgements
8466

File renamed without changes.

packages/web/.nvmrc lambda/.nvmrc

File renamed without changes.

packages/lambda/Dockerfile lambda/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This base image already contains the Amazon Lambda Runtime Interface Client (RIC) for run server in production, and the Runtime Interface Emulator (RIE) for run server locally
2-
FROM amazon/aws-lambda-nodejs:14
2+
FROM amazon/aws-lambda-nodejs:20
33

44
RUN yum -y install \
55
python3.x86_64 \
File renamed without changes.

0 commit comments

Comments
 (0)