Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 571 Bytes

Readme.md

File metadata and controls

49 lines (31 loc) · 571 Bytes

AutoSense

Installation

To run the frontend

  • Change directory to client
cd client
  • Install node_modules dependencies by running:
npm install
  • Run
npm run dev
  • Frontend will now run on localhost:8080

To run the backend

  • Change directory to server
cd server
  • Install node_modules dependencies by running:
npm install
  • Run
npm run server
  • Backend will now run on localhost:5000

!!!Make sure to run the backend on port 5000 for the website to work correctly.