Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/augustoscher/curso-aws-serverless-apps
Serverless Apps with AWS
https://github.com/augustoscher/curso-aws-serverless-apps
apollo-server apollo-server-lambda aws-api-gateway aws-aurora aws-cloudfront aws-dynamodb aws-lambda aws-rekognition aws-s3 aws-sqs aws-translate ecs-fargate graphql node-streams nodejs serverless-framework
Last synced: 1 day ago
JSON representation
Serverless Apps with AWS
- Host: GitHub
- URL: https://github.com/augustoscher/curso-aws-serverless-apps
- Owner: augustoscher
- Created: 2020-04-14T01:57:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-03T08:51:48.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T05:52:39.959Z (over 1 year ago)
- Topics: apollo-server, apollo-server-lambda, aws-api-gateway, aws-aurora, aws-cloudfront, aws-dynamodb, aws-lambda, aws-rekognition, aws-s3, aws-sqs, aws-translate, ecs-fargate, graphql, node-streams, nodejs, serverless-framework
- Language: JavaScript
- Homepage:
- Size: 52.6 MB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 96
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS Serverless Apps
Serverless Apps with AWSGood points:
- Não precisa gerenciar Clusters;
- Segurança entre redes;
- Autoscaling;
- Gerenciamento de memória e disco;
- Tem dezenas de serviços à disposição.
- Podem ser containers serverless e executar funções de longa duração;
- Rodar e testar localmente via docker (localstack, serverless-offline e nodemon)Disclaimers:
- Cold Start
- Cloud dependency## Setup
Set node version:
```
nvm use 18
```Install Serverless framework globally or in some application:
```
yarn global add serverless
```Export AWS credentials:
```
export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=
```Deploy your service:
```
serverless deploy
```### Image Analysis with Rekognition
https://fyysud98b0.execute-api.us-east-1.amazonaws.com/dev/analyse?imageUrl=https://cdn.pixabay.com/photo/2015/02/12/10/30/dog-633562_1280.jpg
```
A imagem tem
98.55% - Cão
98.55% - animal de estimação
98.55% - caninos
98.55% - mamíferos
98.55% - animais
98.28% - roupas
98.28% - vestuário
88.52% - sapatos
88.52% - calçados
```