Files
Campus-Plug/README.md
2025-04-03 14:05:26 -06:00

30 lines
720 B
Markdown

### 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 `name-some branch name`.
### `frontend`
- Use React Js and vite as the node manger
```Bash
npm install
```
2. **Start The Server**, `cd frontend` into the dir and then type command
```Bash
npm run dev
```
### `backend`
1. Install the needed lib with the command bellow
```Bash
npm install
```
2. **Start The Server**, `cd backend` into the dir and then type command
```Bash
npm run dev
```
### Database
1. To Create the DB use the command bellow
```Bash
mysql -u root mysql < mysql-code/Schema.sql
```
- MySql Version 9.2.0