Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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": "*"
}
]
}
```