Skip to content
Snippets Groups Projects

README

First create a python virtual environment

python3 -m venv demo_venv

Activate the python environment

source demo_venv/bin/activate

Verify that you are in the virtual environment

which pip
$ ~/tiqi-js-tutorial/demo_venv/bin/pip
which python
$ ~/tiqi-js-tutorial/demo_venv/bin/python

Create mock device class

mkdir device
touch device/__init__.py

Create Flask server

pip install flask

Create JS Frontend

mkdir frontend
cd frontend
npm init