This is My Settings.py:
DATABASES = {
'default': {},
'company': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'leavebuddy_company',
'USER': 'leavebuddy_user2',
'PASSWORD': '******',
'HOST': '/Applications/MAMP/tmp/mysql/mysql.sock',
'PORT': '3306',
}
}
Its Giving me the error:
settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.
Can you guys please guide me in the right direction.Thanks