An email-based reminder that sends Zoom links before classes.
# Install dependencies for server
npm install
# Install dependencies for client
cd client && npm install
# Build client production files
npm build
# Run
cd .. && npm start
# Run the client & server with concurrently
npm run both
# Run the Express server only
npm run server
# Run the React client only
npm run client
# Server runs on http://localhost:5000 and client on http://localhost:3000
1.0.0