Install:
pip install git+https://github.com/multi-cloud-explorer/mce-django-app.gitAdd to settings.py:
INSTALLED_APPS = [
...,
'mce_django_app',
]Update database:
./manage.py migratepip install -e .[tests]
# With sqlite:
./manage.py test
# With PostgreSQL:
DATABASE_URL=postgres://mce:[email protected]:5432/mce ./manage.py test