Files
Campus-Plug/README.md

35 lines
796 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
2. Make a brach with the following naming conventionp, refix 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
#Install the needed lib with the command bellow
npm install
#Start The Server
2025-03-17 18:46:30 -06:00
npm run dev
```
---
### Backend
1. `cd backend` into the dir and then type command
2025-03-17 18:46:30 -06:00
```Bash
#Install the needed lib with the command bellow
npm install
#Start The Server
2025-03-17 18:46:30 -06:00
npm run dev
2025-01-30 13:37:10 -07:00
```
---
2025-01-30 13:29:13 -07: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
2. use Marketplace;
3. \. PathToYour/Schema.sql
3. \. PathToYour/Init-Data.sql
2025-03-23 16:29:38 -06:00
```