https://github.com/js-kyle/aws-lambda-queues
Example architecture of AWS Lambda SQS
https://github.com/js-kyle/aws-lambda-queues
Last synced: over 1 year ago
JSON representation
Example architecture of AWS Lambda SQS
- Host: GitHub
- URL: https://github.com/js-kyle/aws-lambda-queues
- Owner: js-kyle
- Created: 2022-08-19T23:27:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-23T07:35:12.000Z (almost 4 years ago)
- Last Synced: 2025-01-23T12:46:43.604Z (over 1 year ago)
- Language: TypeScript
- Size: 1.07 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# AWS Lambda Queues
This is an example project shell of an AWS Architecture utilitsing the Serverless Framework with AWS Lambda written in TypeScript.
## Architecture:

## Installation
Install project dependencies using Yarn
```bash
yarn
```
## Environment Variables
To deploy this project to AWS, you will need to add the following environment variables to your environment.
`AWS_ACCESS_KEY_ID` An AWS account access key. It is not recommended to use your AWS Root user.
`AWS_SECRET_ACCESS_KEY` AWS secret access key
## Deploying
To deploy the project to AWS
```bash
yarn deploy
```
## Development
To run the environment locally
```bash
yarn dev
```