All Projects → nicolaslopezj → react-deploy-s3

nicolaslopezj / react-deploy-s3

Licence: MIT license
Deploy create react app's in AWS S3

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-deploy-s3

React Deploy S3
Deploy create react app's in AWS S3
Stars: ✭ 66 (-1.49%)
Mutual labels:  ssl, create-react-app, deploy, s3, cloudfront
Confetti
🎉 A tool to help creating and deploying static sites with AWS
Stars: ✭ 96 (+43.28%)
Mutual labels:  s3, cloudfront
Cyberduck
Cyberduck is a libre FTP, SFTP, WebDAV, Amazon S3, Backblaze B2, Microsoft Azure & OneDrive and OpenStack Swift file transfer client for Mac and Windows.
Stars: ✭ 1,080 (+1511.94%)
Mutual labels:  s3, cloudfront
Lad
👦 Lad is the best Node.js framework. Made by a former Express TC and Koa team member.
Stars: ✭ 2,112 (+3052.24%)
Mutual labels:  s3, cloudfront
Aws
A collection of bash shell scripts for automating various tasks with Amazon Web Services using the AWS CLI and jq.
Stars: ✭ 493 (+635.82%)
Mutual labels:  s3, cloudfront
S3 Deploy Website
Deploy website to S3/CloudFront from Python
Stars: ✭ 26 (-61.19%)
Mutual labels:  s3, cloudfront
Terraform Aws Cloudfront S3 Cdn
Terraform module to easily provision CloudFront CDN backed by an S3 origin
Stars: ✭ 162 (+141.79%)
Mutual labels:  s3, cloudfront
gozeit
GoZeit
Stars: ✭ 19 (-71.64%)
Mutual labels:  s3, cloudfront
crux.land
crux.land is a free registry service meant for hosting small (≤ 20kB) single deno scripts.
Stars: ✭ 50 (-25.37%)
Mutual labels:  deploy, s3
Github To S3 Lambda Deployer
⚓️ GitHub webhook extension for uploading static pages to AWS S3 directly after commiting to master via Lambda written in Node.js
Stars: ✭ 23 (-65.67%)
Mutual labels:  deploy, s3
Rocket
Automated software delivery as fast and easy as possible 🚀
Stars: ✭ 217 (+223.88%)
Mutual labels:  deploy, s3
simply-static-deploy
WordPress plugin to deploy static sites easily to an AWS S3 bucket.
Stars: ✭ 48 (-28.36%)
Mutual labels:  s3, cloudfront
Dive-Into-AWS
Links to the Repos and Sections in our Dive into AWS Course.
Stars: ✭ 27 (-59.7%)
Mutual labels:  s3, cloudfront
Workshop Donkeytracker
Workshop to build a serverless tracking application for your mobile device with an AWS backend
Stars: ✭ 27 (-59.7%)
Mutual labels:  s3, cloudfront
serverless-aws-static-websites
Deploy your static websites without all the hassle on AWS with CloudFront, S3, ACM and Route53 via Serverless
Stars: ✭ 121 (+80.6%)
Mutual labels:  s3, cloudfront
Scar
Deploy static websites in seconds - with HTTPS, a global CDN, and custom domains.
Stars: ✭ 1,715 (+2459.7%)
Mutual labels:  s3, cloudfront
cloudfront-image-proxy
Make CloudFront resize images "on the fly" via lambda@edge, cache it and persists it in S3.
Stars: ✭ 32 (-52.24%)
Mutual labels:  s3, cloudfront
terraform-aws-frontend
Collection of Terraform modules for frontend app deployment on AWS.
Stars: ✭ 31 (-53.73%)
Mutual labels:  s3, cloudfront
Gatsby Plugin S3
Deploy your gatsby site to a S3 bucket.
Stars: ✭ 186 (+177.61%)
Mutual labels:  s3, cloudfront
Cdk Spa Deploy
This is an AWS CDK Construct to make deploying a single page website (Angular/React/Vue) to AWS S3 behind SSL/Cloudfront easier
Stars: ✭ 94 (+40.3%)
Mutual labels:  ssl, cloudfront

React Deploy S3

Deploy create react app's in AWS S3

Demo

Instructions

Install the tool

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

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "s3:*",
                "acm:describeCertificate",
                "acm:requestCertificate",
                "acm:addTagsToCertificate",
                "cloudfront:createDistribution",
                "cloudfront:createInvalidation"
            ],
            "Effect": "Allow",
            "Resource": "*"
        }
    ]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].