Skip to content

React web app source code for the AWS UserGroup Dubai “2021 Container Series - Building Containers” workshop

Notifications You must be signed in to change notification settings

Lizzardd/aws-ug-dbx-2021-building-containers-workshop-react-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React (JavaScript) website

Proof-of-Concept (PoC) application that calls 2 other services.

For example for "Hello world!" this app would be the one providing calling 2 services to get "Hello" and "world", and it would add the "!" at the end.

Architecture diagram

Commands

Dependencies are defined in package.json and package-lock.json. To install the dependencies:

npm ci

To build the application:

npm build

To run the application:

npm start

Some Node.js-specific workarounds have to happen in the Dockerfile: adding node_modules to the path and installing react-scripts!

docker run --interactive --tty --rm \
  --publish 3000:3000 \
  YOUR_IMAGE_ID_HERE

About

React web app source code for the AWS UserGroup Dubai “2021 Container Series - Building Containers” workshop

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 47.1%
  • CSS 35.3%
  • HTML 13.6%
  • Shell 4.0%