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