-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb9160f
commit 796882f
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Zadala AWS lambda | ||
Zadala AWS lambda is the lambda handler for [Zadala](https://github.com/RyanAquino/zadala) User login events | ||
|
||
### Requirements | ||
- python 3 | ||
- AWS account | ||
|
||
### Technology | ||
- python 3 | ||
- boto3 | ||
- AWS Lambda | ||
- AWS DynamoDB | ||
- AWS SQS | ||
- AWS SNS | ||
|
||
### Setup | ||
##### create virtual environment | ||
``` | ||
python -m venv venv | ||
``` | ||
|
||
##### Install required packages | ||
``` | ||
pip install -r requirements.txt | ||
``` | ||
|
||
##### Run lambda handler | ||
``` | ||
python main.py | ||
``` |