Posts

Showing posts from December, 2019

Deploy Angular AWS Beanstalk using code pipeline

Image
Angular default generated app git https://github.com/thallapalli/angular-app.git Select code pipleline servive create as below Click Next Select Source provider as GitHub Click on Connect to GitHub I have already configured my github so screen looks below. if we are settingup for the first time just selct default options .just provide your github url (https://github.com/thallapalli/angular-app.git) click Next select Build provider as AWS code build and Under project name click on Create Project provide code build project name angular-app-codebuild Operating system as :Ubuntu make sure to add buildspec.yml file to github root directory version: 0.2 phases:   install:     runtime-versions:       nodejs: 10   pre_build:     commands:       - echo Installing source NPM dependencies...       - npm cache clean --force       - npm install -g @angular/cli  ...