Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 1.01 KB

README.md

File metadata and controls

28 lines (23 loc) · 1.01 KB

When4Meet

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.

Built With

  • React - Frontend web framework used
  • Express - Backend framework used
  • MYSQL - Database Management

Install requirements

  1. Clone the repo (https://github.com/slohacks/When4Meet.git)
  2. Install depenencies (npm install)
  3. 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>"
}

Running the App

  1. Navigate to frontend (cd frontend/)
  2. Start Development server (npm start)
  3. In another command window, Navigate to backend (cd frontend/)
  4. Start Backend server (node main.js -p 3001)