A dog finder web service (can edit this later)
# Install dependencies for server
npm install
# Install dependencies for client
npm run client-install
# Run the client & server with concurrently
npm run dev
# Run the Express server only
npm run server
# Run the React client only
npm run client
# install material-ui/core
npm install @material-ui/core
#install material-ui/icon
npm install @material-ui/icons
#install lab from material-ui
#lab is used for autocomplete
npm install @material-ui/lab
# Server runs on http://localhost:5000 and client on http://localhost:3000