A home inventory tracking system.
A virtualenv is recommended.
pip install -r requirements.txt
Note: The development requirements are only necessary when recreating the ERD.
Creating migrations:
python manage.py makemigrations
Applying migrations:
python manage.py migrate
Running tests:
python manage.py test
Increase verbosity:
python manage.py test -v2
Running tests with coverage:
coverage run --source='.' manage.py test
Generate HTML output:
coverage html
Then open htmlcov/index.html
to view report.