Files
Campus-Plug/README.md

44 lines
993 B
Markdown
Raw Normal View History

2025-03-12 16:14:11 -06:00
### Some ground rules
1. Add both node_modules from Slient and Server to your ```gitignore``` file
2025-04-18 11:29:39 -06:00
2. Make a brach with the following naming conventionp, 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-18 11:30:40 -06:00
### Recommendation
1. `cd recommendation-engine` into the dir and then type command
```Bash
1. python3 server.py #Start The Server
```
---
2025-04-21 22:46:39 -06:00
2025-04-17 14:10:18 -06:00
### Recommendation system
1. Install the dependencies
```Bash
pip install mysql.connector
```
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-18 11:29:06 -06:00
2. \. PathToYour/Schema.sql
3. \. PathToYour/Init-Data.sql
2025-03-23 16:29:38 -06:00
```