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 install
to install the npm packages - Run
npm run dev
to start the development server onlocalhost:8080
- Start in the base directory
cloud-computing-midterm
- Go into the client directory -
cd project/client
- Run
npm install
to install the npm packages - Run
npm start
to start the development app onlocalhost:3000
- Open
localhost:3000
in your browser - Everytime you make a change to any files under
client
and save, the React app will automatically reload - Everytime you make a change to any files under
server
and 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