https://github.com/holms/firstawslambda
https://github.com/holms/firstawslambda
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/holms/firstawslambda
- Owner: holms
- Created: 2018-10-16T18:39:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T18:39:13.000Z (over 7 years ago)
- Last Synced: 2025-10-07T09:52:21.752Z (9 months ago)
- Language: HTML
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stackery Hello World - Python 3.6
This is a sample template for a serverless AWS Lambda application, written in Python.
This application contains two Lambda Functions. getWelcomePage function
responds to web request events from an API Gateway endpoint. logErrors
processes a centralized stream of all Lambda error within this app.
The application arcitecture is defined in template.yaml, a Serverless
Application Model (SAM) template which can be managed through the Stackery UI
at app.stackery.io.
Here is an overview of the files:
```bash
.
├── README.md <-- This README file
├── src <-- Source code dir for all AWS Lambda functions
│ ├── getWelcomePage <-- Source code dir for getWelcomePage function
│ │ ├── README.md <-- Function specific README
│ │ ├── handler.py <-- Lambda function code
│ │ ├── requirements.txt <-- Python pip dependencies
│ │ └── welcome.html <-- HTML welcome page returned by Lambda function
│ └── logErrors <-- Source code dir for logErrors function
│ ├── README.md <-- Function specific README
│ ├── handler.py <-- Lambda function code
│ └── requirements.txt <-- Python pip dependencies
└── template.yaml <-- SAM infrastructure-as-code template
```