/propriete

Track your stuff

Primary LanguagePython

Django CI CodeFactor codecov

propriete

A home inventory tracking system.

Developing

A virtualenv is recommended.

pip install -r requirements.txt

Note: The development requirements are only necessary when recreating the ERD.

Database Migrations

Creating migrations:

python manage.py makemigrations

Applying migrations:

python manage.py migrate

Unit Tests

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.