diff --git a/BH/settings.py b/BH/settings.py index b99189e..53d4c5d 100644 --- a/BH/settings.py +++ b/BH/settings.py @@ -79,8 +79,12 @@ WSGI_APPLICATION = 'BH.wsgi.application' DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'ENGINE': 'django.db.backends.mysql', + 'NAME': 'Name of the database Instance', + 'USER': 'USERNAME', + 'PASSWORD': 'PASSWORD of User', + 'HOST': 'localhost', + 'PORT': 'SET PORT NUMBER', } } diff --git a/requirements.txt b/requirements.txt index d00d440..1d746c4 100644 Binary files a/requirements.txt and b/requirements.txt differ