/python_aws_lambda_api_template

Template of a AWS Lambda API using Python and AWS Gateway API

Primary LanguagePythonApache License 2.0Apache-2.0

Github Actions Workflow

python_aws_lambda_api_template

Personal AWS Lambda python template

cheat sheet

venv

create venv

python3 -m venv .venv

activate venv

source .venv/bin/activate

Docker

build docker image

docker build -t main:latest .
docker run -p 8080:80 your-image:latest