Skip to content

Commit

Permalink
Use in-mem database for cli server
Browse files Browse the repository at this point in the history
  • Loading branch information
neoformit committed Jan 4, 2025
1 parent 80f9436 commit c7d0064
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/app/settings/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:',
}
}

0 comments on commit c7d0064

Please sign in to comment.