30 lines
706 B
Markdown
30 lines
706 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
|
|
python3 ./SQL_code/init-db.py
|
|
```
|
|
- MySql Version 9.2.0
|