Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mathisve/serverless-forms

Serverless forms using Go, Lambda, React and NeonDB
https://github.com/mathisve/serverless-forms

Last synced: 13 days ago
JSON representation

Serverless forms using Go, Lambda, React and NeonDB

Awesome Lists containing this project

README

        

# serverless-forms
Serverless forms using Go, Lambda, React and NeonDB

This repository supports [this](https://youtu.be/JtgwiJggOU0) video.

## email-lambda-function
This folder contains the lambda function and SAM templates.

Make sure to modify the environment variables in `template.yaml`!

To create:
```bash
sam build
sam deploy --guided
```

To update:
```bash
sam build && sam deploy
```

To delete:
```bash
sam delete
```

## react-frontend
This folder contains the ReactJS frontend.

Don't forget to update the API Gateway endpoint URL with the output of the SAM deploy command!

Run:
```bash
npm install
npm run start
```