Changed from DBLite to MariaDB

pull/4/head
Jukoga 2024-07-19 22:55:11 +02:00
parent 9873a7db28
commit 4edf0577e6
2 changed files with 6 additions and 2 deletions

View File

@ -79,8 +79,12 @@ WSGI_APPLICATION = 'BH.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.mysql',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 'NAME': 'Name of the database Instance',
'USER': 'USERNAME',
'PASSWORD': 'PASSWORD of User',
'HOST': 'localhost',
'PORT': 'SET PORT NUMBER',
} }
} }

Binary file not shown.