diff --git a/app/app/settings/cli.py b/app/app/settings/cli.py index 4a0f10a..2e49c89 100644 --- a/app/app/settings/cli.py +++ b/app/app/settings/cli.py @@ -30,3 +30,10 @@ f"http://{HOSTNAME}/static/local/{LAB_CONTENT_ENTRYPOINT}") INSTALLED_APPS.remove('django_light') + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': ':memory:', + } +}