Preparation

Before we get to the main content of this workshop, we need to reset the web application.

  1. Download the below source code
  1. Run the below commands
sam build
sam deploy --guided
  1. Enter the following content:
  • Stack Name []: fcjdmsapp
    • AWS Region []: ap-southeast-1
    • Parameter DocumentStoreBucketName [fcjdmsstore]: return
    • Parameter WebStoreBucketName [fcjdmswebstore]: return
    • Confirm changes before deploy [y/N]: y
    • Allow SAM CLI IAM role creation [Y/n]: y
    • Disable rollback [y/N]: n
    • DocsList may not have authorization defined, Is this okay? [y/N]: y
    • DocsUpload may not have authorization defined, Is this okay? [y/N]: y
    • DocsDelete may not have authorization defined, Is this okay? [y/N]: y
    • GeneralInforUpload may not have authorization defined, Is this okay? [y/N]: y
    • GeneralInforGet may not have authorization defined, Is this okay? [y/N]: y
    • Save arguments to configuration file [Y/n]: y
    • SAM configuration file [samconfig.toml]: return
    • SAM configuration environment [default]: return
    • Deploy this changeset? [y/N]: y
  1. Open AWS API Gateway console

  2. Click API Gateway REST API to Lambda

CreateUserPool

  1. Click Stage on the left menu
  • Click dev
  • Note down the InvokeURL

CreateUserPool

  1. If you have not downloaded the application code, run the commands below:
git clone https://github.com/AWS-First-Cloud-Journey/
FCJ-Serverless-DMS.git
cd FCJ-Serverless-DMS
npm install
  1. Open the src/constant.js file, replace the value of APP_API_URL with InvokeURL

CreateUserPool

  1. Run the below commands to build project
yarn build
  1. We have finished building the front-end. Next, run the below command to upload build folder to S3 bucket
aws s3 cp build s3://fcjdmswebstore --recursive

So we have rebuilt the web application.