- Task Management App for Employees with searching index function
- Organize Orders
- 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 appdev_project
- CD into the client and server folder separately
cd client (or) cd server
- Install dependencies on each folder
npm install
- 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)
- Import the "plantdb.sql" SQL file found outside the directory into phpmyadmin. NOTE THAT THIS IS A MUST
- 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)