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
- Host: GitHub
- URL: https://github.com/avraammavridis/deploy-aws-s3
- Owner: AvraamMavridis
- Created: 2018-05-11T05:42:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T14:29:35.000Z (almost 8 years ago)
- Last Synced: 2025-08-09T04:35:03.784Z (11 months ago)
- Topics: aws, deploy, deployment, s3, static-site
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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/'
})
```