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
|
2025-03-12 16:13:03 -06:00
|
|
|
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
|
2025-03-12 16:13:03 -06:00
|
|
|
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-12 16:15:54 -06:00
|
|
|
- MySql Version 9.2.0
|