An open API service indexing awesome lists of open source software.

https://github.com/yeukfei02/ruby-serverless

ruby-serverless
https://github.com/yeukfei02/ruby-serverless

aws-apigateway aws-lambda dynamodb ruby serverless

Last synced: 9 months ago
JSON representation

ruby-serverless

Awesome Lists containing this project

README

          

# ruby-serverless

documentation:

api url:

## Requirement

- install ruby (v2.7)
- install gem
- install bundle
- install yarn
- install node (v14+)
- install serverless

## Testing and run

```zsh
// install ruby dependencies
$ bundle install

// install node dependencies
$ yarn

// test api in local
$ yarn run dev

// deploy to serverless
$ yarn run deploy

// open serverless dashboard
$ yarn run dashboard

// remove serverless services in aws (api gateway, lambda, s3, cloudformation)
$ yarn run remove

// rubocop
$ rubocop --auto-correct

// reek
$ reek
```