Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mathisve/serverless-forms
- Owner: mathisve
- Created: 2024-05-28T14:57:03.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-05-28T16:46:09.000Z (7 months ago)
- Last Synced: 2024-12-08T05:42:43.624Z (21 days ago)
- Language: HTML
- Size: 187 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# serverless-forms
Serverless forms using Go, Lambda, React and NeonDBThis 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
```