When4Meet is a web application that provides an easy, sleek, and organized experience for finding and scheduling meetings based off of the availability of a team's members.
- Clone the repo (
https://github.com/slohacks/When4Meet.git
) - Install depenencies (
npm install
) - Create and set up your own custom sql server, and change the code in the connection.json file to your custom sql server data
{
"host": "localhost",
"user": "<yourmysqllogin>",
"password": "<yourmysqlpass",
"database": "<yourdb>"
}
- Navigate to frontend (
cd frontend/
) - Start Development server (
npm start
) - In another command window, Navigate to backend (
cd frontend/
) - Start Backend server (
node main.js -p 3001
)