SmartPicasso/README.md

35 lines
459 B
Markdown
Raw Normal View History

2020-12-09 21:58:18 +01:00
# SMART PICASSO project for SYI classes
## How to run the project
First of all clone repository.
### REST API
`cd rest-app`
`pip3 install -r requirements.txt`
`python3 manage.py makemigrations`
`python3 manage.py runserver`
To run tests:
`python3 manage.py test`
### Client app
`cd client`
`pip3 install -r requirements.txt`
`python3 app.py`
2021-01-04 17:24:09 +01:00
### Gestures module
`cd gestures`
2021-01-04 17:24:19 +01:00
`pip install -r requirements.txt`
2021-01-04 17:24:19 +01:00
`python gesture_recognition.py `
2021-01-04 17:24:09 +01:00