Files
Campus-Plug/README.md

30 lines
708 B
Markdown
Raw Normal View History

2025-03-12 16:14:11 -06:00
### Some ground rules
2025-03-05 22:30:52 -07:00
1. Add both node_modules from Slient and Server to your `gitignore` file
2025-03-17 18:46:30 -06:00
2. Make a brach with the following naming conventionp, refix it with your name `name-some branch name`.
2025-01-30 13:29:13 -07:00
2025-03-12 16:14:11 -06:00
### `frontend`
2025-03-17 18:46:30 -06:00
- Use React Js and vite as the node manger
```Bash
npm install
2025-03-05 22:34:29 -07:00
```
2025-03-17 18:46:30 -06:00
2. **Start The Server**, `cd frontend` into the dir and then type command
```Bash
npm run dev
```
2025-03-12 16:14:11 -06:00
### `backend`
2025-01-30 13:37:10 -07:00
1. Install the needed lib with the command bellow
2025-03-17 18:46:30 -06:00
```Bash
npm install
2025-01-30 13:37:10 -07:00
```
2025-03-17 18:46:30 -06:00
2. **Start The Server**, `cd backend` into the dir and then type command
```Bash
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
2025-03-23 16:29:38 -06:00
1. To Create the DB use the command bellow
```Bash
2025-03-29 16:13:22 -06:00
python3 ./mysql-code/init-db.py
2025-03-23 16:29:38 -06:00
```
2025-03-12 16:15:54 -06:00
- MySql Version 9.2.0