Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicolaslopezj/react-deploy-s3
Deploy create react app's in AWS S3
https://github.com/nicolaslopezj/react-deploy-s3
aws cloudfront create-react-app deploy react s3 ssl
Last synced: 3 months ago
JSON representation
Deploy create react app's in AWS S3
- Host: GitHub
- URL: https://github.com/nicolaslopezj/react-deploy-s3
- Owner: nicolaslopezj
- License: mit
- Created: 2016-10-21T01:58:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-17T20:32:51.000Z (over 7 years ago)
- Last Synced: 2024-10-17T10:04:48.426Z (3 months ago)
- Topics: aws, cloudfront, create-react-app, deploy, react, s3, ssl
- Language: JavaScript
- Size: 1.13 MB
- Stars: 66
- Watchers: 4
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# React Deploy S3
Deploy create react app's in AWS S3
![Demo](https://raw.githubusercontent.com/orionsoft/react-deploy-s3/master/demo.gif)
## Instructions
### Install the tool
```sh
yarn global add react-deploy-s3
```### Attach policy to user in AWS
IAM Management Console **>** Users **>** [The user you will use] **>** Inline Policies **>** Create User Policy **>** Custom Policy
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:*",
"acm:describeCertificate",
"acm:requestCertificate",
"acm:addTagsToCertificate",
"cloudfront:createDistribution",
"cloudfront:createInvalidation"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
```