I messed something up: I performed find & replace all in PyCharm for the name of my app:
From 'adolim' to 'adulim - by mistake I clicked and changed the configuration files too.
Now when I want to run anything I'm getting: django.core.exceptions.ImproperlyConfigured: 'adolim.apps' does not contain a class 'adolimConfig'. Choices are: 'Config'.
(can't run shell/dbshell eaither)
I tried to follow few potential solutions, like this great one about how to update the app name, but anything I do lead me to that Error.
- also to change settings to:
adulim.apps.adulimConfig
Any suggestions? (not sure what to attach, added my settings) Thanks.
setting.py
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'home.apps.HomeConfig',
'adolim.apps.adolimConfig',
...
]