TASKIFY 3105 - MANAGEMENT TOOL README documentation
Guide to using this webapp
Task Management App for Employees with searching index function
Organize Orders
Wireframe Layouts
Document Link
Clone the project in your local directory of choice. Example using the git CLI:
git clone https://github.com/Sweep76/appdev_project.git
CD into the root folder
CD into the client and server folder separately
Install dependencies on each folder
dependencies used - client folder
npm init
npm install sass --save-dev
npm install react-router-dom
npm install react-icons
npm install axios
npm install react-modal
dependencies used - server folder
npm init
npm install mysql express cors
npm install jsonwebtoken
Run the project
npm run dev (in the client directory)
node index.js (in the server directory)
Guide to installing the DB of taskify
Import the "plantdb.sql" SQL file found outside the directory into phpmyadmin. NOTE THAT THIS IS A MUST
Commands to Run During Development
Ensure that your XAMPP is running with the imported database and mySQL server running as well.
Start your local front-end server
npm run dev (on client directory)
node index.js (on server directory)