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
- Host: GitHub
- URL: https://github.com/brightleaf/launchpad
- Owner: brightleaf
- Created: 2020-05-19T08:22:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T09:26:56.000Z (over 3 years ago)
- Last Synced: 2025-10-26T22:43:15.307Z (8 months ago)
- Language: JavaScript
- Size: 2.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: readme.md
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
```