Skip to content

mcpcpc/openj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

openj

Kanban for Lean manufacturing (also called just-in-time manufacturing, abbreviated JIT).

Install

PyPI

Install and update using pip:

pip install -U openj

Repository

When using git, clone the repository and change your present working directory.

git clone http://github.com/mcpcpc/openj
cd openj/

Create and activate a virtual environment.

python3 -m venv venv
source venv/bin/activate

Install LibreHTF to the virtual environment.

pip install -e .

Deployment

Flask

Non-production WSGI via waitress for development and debugging.

flask --app openj run --debug

Waitress

Production WSGI via waitress.

pip install waitress
waitress-serve --call openj:create_app

Test

python3 -m unittest

Run with coverage report.

coverage run -m unittest
coverage report
coverage html  # open htmlcov/index.html in a browser

Resources