Finish admin dashboard and update sql code

This commit is contained in:
estherdev03
2025-04-20 05:56:31 -06:00
commit 68d2b950c0
28 changed files with 4144 additions and 0 deletions

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
### 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```.
---
### Frontend
1. `cd frontend` into the dir and then type command
```Bash
#Install the needed lib with the command bellow
npm install
#Start The Server
npm run dev
```
---
### Backend
1. `cd backend` into the dir and then type command
```Bash
#Install the needed lib with the command bellow
npm install
#Start The Server
npm run dev
```
---
### Database
1. MySql Version 9.2.0
2. To Create the DataBase use the command bellow:
```Bash
1. mysql -u root
2. use Marketplace;
3. \. PathToYour/Schema.sql
3. \. PathToYour/Init-Data.sql
```