2025-03-12 16:14:11 -06:00
|
|
|
### Some ground rules
|
2025-04-14 11:06:59 -06:00
|
|
|
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-04-14 11:06:59 -06:00
|
|
|
---
|
2025-01-30 13:29:13 -07:00
|
|
|
|
2025-04-14 11:06:59 -06: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
|
|
|
```
|
2025-04-14 11:06:59 -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-04-14 11:06:59 -06: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-03-05 22:30:52 -07:00
|
|
|
### Database
|
2025-04-14 11:06:59 -06:00
|
|
|
1. MySql Version 9.2.0
|
|
|
|
|
2. To Create the DataBase use the command bellow:
|
2025-03-23 16:29:38 -06:00
|
|
|
```Bash
|
2025-04-14 11:06:59 -06:00
|
|
|
1. mysql -u root
|
2025-04-18 11:29:06 -06:00
|
|
|
2. \. PathToYour/Schema.sql
|
2025-04-14 11:06:59 -06:00
|
|
|
3. \. PathToYour/Init-Data.sql
|
2025-03-23 16:29:38 -06:00
|
|
|
```
|