Files
Campus-Plug/README.md

41 lines
1.0 KiB
Markdown
Raw Normal View History

2025-04-30 13:46:04 -06:00
### Ground rules
2026-02-20 21:58:45 -07:00
<img class='fullimage' alt='Fin-Track Application Screenshot' src='./assets/CampusPlug.png'/>
1. Add both node_modules from Client and Server to your ```gitignore``` file
2025-04-30 13:46:04 -06:00
2. Make a brach with the following naming convention, prefix it with your name ```Your-Name Branch-Name```.
---
2025-01-30 13:29:13 -07:00
### Frontend
1. `cd frontend` into the dir and then type command
2025-03-17 18:46:30 -06:00
```Bash
2025-04-18 11:29:06 -06:00
1. npm install #Installs the needed packages
2. npm run dev #Start The Server
2025-03-17 18:46:30 -06:00
```
---
### Backend
1. `cd backend` into the dir and then type command
2025-03-17 18:46:30 -06:00
```Bash
2025-04-18 11:29:06 -06:00
1. npm install #Installs the needed packages
2. npm run dev #Start The Server
2025-01-30 13:37:10 -07:00
```
---
2025-01-30 13:29:13 -07:00
2025-04-17 14:10:18 -06:00
### Recommendation system
2025-04-30 13:46:04 -06:00
1. Install the dependencies `pip install scikit-learn numpy mysql.connector flask flask-cors`
2. `cd recommendation-engine` into the dir and then type command
2025-04-17 14:10:18 -06:00
```Bash
2025-04-30 13:46:04 -06:00
1. python3 server.py #Start The Server
2025-04-17 14:10:18 -06:00
```
2025-04-21 22:46:39 -06:00
---
2025-04-18 11:30:40 -06:00
2025-03-05 22:30:52 -07:00
### Database
1. MySql Version 9.2.0
2. To Create the DataBase use the command bellow:
2025-03-23 16:29:38 -06:00
```Bash
1. mysql -u root
2025-04-30 13:46:04 -06:00
2. \. PathTo/Schema.sql
3. \. PathTo/Init-Data.sql
2025-03-23 16:29:38 -06:00
```