Files
kodjo e41094f908 Fixed #8
Fixed #12
Fixed #13
Fixed #14
2023-05-08 17:50:28 +02:00

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
```