# To get started, if you’re not using Python 3, you’ll want to install the virtualenv tool with pip:
pip install virtualenv
# Switch in the project directory
cd lm-status-service
# Create a new virtual environment inside the directory
pyvenv env
# In order to use this environment’s packages/resources in isolation, you need to “activate” it. To do this, just run:
$ source env/bin/activate
(env) $
# Install the project dependencies
pip install -r requirements.txt
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run buildpython3 app.py