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

https://github.com/avraammavridis/deploy-aws-s3

Simple script to deploy a static website to s3
https://github.com/avraammavridis/deploy-aws-s3

aws deploy deployment s3 static-site

Last synced: about 2 months ago
JSON representation

Simple script to deploy a static website to s3

Awesome Lists containing this project

README

          

# deploy-aws-s3

Simple script to deploy static website to s3

How to use:

```js
const deploy = require('deploy-aws-s3');

deploy({
accessKeyId: 'your access key',
secretAccessKey: 'your secret key',
s3BucketName: 'your bucket name',
folderPath: 'your path to the folder of the static content e.g. ../build/'
})
```