Fixed #12
Fixed #13
Fixed #14
This commit is contained in:
2023-05-08 17:50:28 +02:00
parent 21a397861a
commit e41094f908
95 changed files with 12168 additions and 260 deletions
+21 -1
View File
@@ -8,4 +8,24 @@ My personnal AI
```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
```