Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucpod/aws-lambda-workshop
Some incremental examples suitable to host an AWS Lambda Functions workshop
https://github.com/lucpod/aws-lambda-workshop
aws aws-lambda lambda lambda-calculus serverless tutorial workshop
Last synced: 3 months ago
JSON representation
Some incremental examples suitable to host an AWS Lambda Functions workshop
- Host: GitHub
- URL: https://github.com/lucpod/aws-lambda-workshop
- Owner: lucpod
- License: mit
- Created: 2017-06-08T19:11:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-26T15:47:01.000Z (over 5 years ago)
- Last Synced: 2024-05-29T00:27:08.625Z (6 months ago)
- Topics: aws, aws-lambda, lambda, lambda-calculus, serverless, tutorial, workshop
- Language: JavaScript
- Homepage:
- Size: 416 KB
- Stars: 18
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-lambda-workshop
Some examples for AWS lambda workshops
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com)
[![CircleCI](https://circleci.com/gh/lucpod/aws-lambda-workshop.svg?style=shield)](https://circleci.com/gh/lucpod/aws-lambda-workshop)## Requirements
In order to use the examples in this repository you will need to have:
1. An AWS account
2. the AWS [CLI tool](https://aws.amazon.com/cli/) installed and configured to use your AWS account
3. Node.js (version >= 6.10) and NPM installed in your machine
4. Docker, SAM Local will use the DOCKER_HOST environment variable to contact the docker daemon.
5. [aws-sam-local](https://www.npmjs.com/package/aws-sam-local) installed globally in your machine## Usage
Check the [`lessons` folder](lessons/) to access the examples.
Every example comes with its own documentation about how to run and deploy the code.
[**➡️ Start with LESSON 01**](lessons/01-simple-hello-world-api)
## Running tests
To run the tests just run from the main directory (be sure you have all the dependency installed first with `npm install`):
```bash
npm test
```## License
Licensed under [MIT License](LICENSE). © Luciano Mammino.
## Contributing
Everyone is very welcome to contribute to this repository. Feel free to raise issues or to submit Pull Requests.
Just remember that every PR should have proper testing and respect the coding standard observed here (through ESLint).