didadata is a Django app to collect numeric data. The app will provide graphs and notifications for collected metrics.
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
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