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

https://github.com/brightleaf/launchpad

Build, deploy and configure AWS
https://github.com/brightleaf/launchpad

Last synced: 19 days ago
JSON representation

Build, deploy and configure AWS

Awesome Lists containing this project

README

          

# Brightleaf Launchpad

CLI and library for deploying code to AWS S3 and AWS Lambda

```
npm install @brightleaf/launchpad --save-dev
npm run build
npx launchpad upload
npm run build:lambdas
npx launchpad upload ???
npx launchpad promote
```

Example launchpad.yml

```
app: Launchpad

buildDir: ./build

env:
dev:
bucket: devbucket
stage:
bucket: stagebucket

functions:
hello:
handler: example/functions/handler.hello
name: Brightleaf-HelloHandler-${self:provider.stage}
events:
- http:
path: /
method: get
cors: true
```