Go to file
Robin Cole 69ee5f75c5 Update .gitignore 2019-09-17 07:14:34 +01:00
app Working 2019-09-17 06:20:34 +01:00
.gitignore Update .gitignore 2019-09-17 07:14:34 +01:00
Dockerfile Initial 2019-09-17 05:33:13 +01:00
LICENSE Initial commit 2019-09-17 05:26:27 +01:00
README.md Fix image 2019-09-17 07:12:46 +01:00
requirements.txt Working 2019-09-17 06:20:34 +01:00
usage.png Working 2019-09-17 06:20:34 +01:00

README.md

deepstack-web-ui

Unofficial web UI for working with Deepstack.

Run deepstack object detection:

$ docker run -e VISION-DETECTION=True -d \
      -v localstorage:/datastore -p 5000:5000 \
      -e API-KEY="Mysecretkey" \
       --name deepstack deepquestai/deepstack:noavx

Edit the deepstack credentials in app/server.py and run the app:

$ python3 app/server.py serve

Development

Use venv:

$ python3 -m venv venv
$ source venv/bin/activate
$ pip install --upgrade -r requirements.txt

References