Skip to content

stephrdev/django-didadata

Repository files navigation

django-didadata

image

image

image

Code style: black

What is django-didadata

didadata is a Django app to collect numeric data. The app will provide graphs and notifications for collected metrics.

Prepare for development

A Python 3 interpreter is required. If you use pyenv with a virtualenv, follow the next steps

$ cd /path/to/project-root/
$ mkvirtualenv django-didadata
# activate virtualenv, if not activated yet
# and install all dev requirements:
$ pip install -e .[dev]

Now you're ready to run the tests:

$ py.test

Code style

This project is styled by black and isort. You can use the following command to format the code automatically and make it black and isort compatible:

$ make format-python-code