├── .gitignore ├── README.md ├── demo.gif ├── docker-compose.yml ├── handler.py ├── package.json ├── prepare_environment.sh ├── resources └── localstack │ ├── localstack.png │ └── localstack_endpoints.json └── serverless.yml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .serverless 3 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/demo.gif -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/handler.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/package.json -------------------------------------------------------------------------------- /prepare_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/prepare_environment.sh -------------------------------------------------------------------------------- /resources/localstack/localstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/resources/localstack/localstack.png -------------------------------------------------------------------------------- /resources/localstack/localstack_endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/resources/localstack/localstack_endpoints.json -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antreyes/localstack-demo/HEAD/serverless.yml --------------------------------------------------------------------------------