e41094f908
Fixed #12 Fixed #13 Fixed #14
32 lines
351 B
Markdown
32 lines
351 B
Markdown
# Sheerka
|
|
|
|
My personnal AI
|
|
|
|
|
|
## To start the server
|
|
|
|
```shell
|
|
cd src
|
|
uvicorn server:app --reload
|
|
```
|
|
|
|
## To start the client
|
|
|
|
```shell
|
|
python $DEV_HOME/src/client.py --username <username> --password <password>
|
|
```
|
|
|
|
## to test
|
|
|
|
```shell
|
|
pytest
|
|
```
|
|
|
|
## To run the coverage
|
|
```shell
|
|
coverage run --source=src -m pytest
|
|
|
|
coverage report
|
|
coverage html
|
|
```
|