Cloud Computing Midterm Assignment - Fantasy Football Web App hosted on Azure
- Start in the base directory
cloud-computing-midterm - Go into the server directory -
cd project/server - Run
npm installto install the npm packages - Run
npm run devto start the development server onlocalhost:8080
- Start in the base directory
cloud-computing-midterm - Go into the client directory -
cd project/client - Run
npm installto install the npm packages - Run
npm startto start the development app onlocalhost:3000
- Open
localhost:3000in your browser - Everytime you make a change to any files under
clientand save, the React app will automatically reload - Everytime you make a change to any files under
serverand save, the NodeJS server will automatically reload - The development React app automatically redirects HTTP calls to the proxy address of
localhost:8080, which is the development NodeJS server, so you'll need the server running to make HTTP calls from the React app