Skip to main content

Posts

Showing posts from September, 2020

How to use CI/CD usgin AWS CodePipeline - S3 BUCKET - ReactJS/VueJS - BItbucket or Github

it is assumed you already know the process about continuous integration CI/CD, each time you make a git push origin your_branch_name it will automatically gets your code from Github or Bitbucket it will build it and unzip it at the S3 desired bucket let it up and ready in an automatic way. this tutorial woks well up today, it anything has changed then it will give you an idea about how to implement this kind of tool in your development team  let's start creating an S3 bucket where the front willl be   now click on bucket properties and select the Static web hosting option now click on the bucket permissions - CORS configuration and set  <? xml version= "1.0" encoding= "UTF-8" ?> < CORSConfiguration xmlns= "http://s3.amazonaws.com/doc/2006-03-01/" > < CORSRule >     < AllowedOrigin > * </ AllowedOrigin >     < AllowedMethod > GET </ AllowedMethod > </ CORSRule > </ CORSConfiguration > now click