Hi!
I am using a custom version of Django, by using a virtual environment. Now, the problem is that whenever I try to connect to my database, I get issues.
The main issue being this: :::python django.core.exceptions.ImproperlyConfigured
Now, I configured everything correctly, I made sure that my username and password was all correct. Here is the snapshot, of my settings:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'gamesbrainiac$default', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': 'gamesbrainiac',
'PASSWORD': '**********',
'HOST': 'mysql.server', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # Set to empty string for default.
}
}