move db to app_be/db folder for later on mounting;

This commit is contained in:
Marco Zeisler 2021-04-30 16:13:53 +02:00
parent 3cae7b432d
commit ed1d23c7cf

View File

@ -120,7 +120,7 @@ WSGI_APPLICATION = 'app_be.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 'NAME': os.path.join(BASE_DIR, 'app_be', 'db', 'db.sqlite3'),
} }
} }