Changed from DBLite to MariaDB
parent
9873a7db28
commit
4edf0577e6
|
|
@ -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',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
BIN
requirements.txt
BIN
requirements.txt
Binary file not shown.
Loading…
Reference in New Issue