Django does not register apps [closed]
INSTALLED_APPS = [
# MY APPS:
"learning_logs",
# DEFAULT APPS:
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
My teacher has helped me, we even turned to AI, but nothing is working. For example, my teachers code runs perfectly on his side, and he even gave me his code however mine is still not working. So, we think 'MY APPS' is not being picked up on. Btw this is from my settings.py
So, after changing code and even using his it's not working. Every time I run my server and follow the link it takes me to the default Django home page when it's supposed to give me my web page. I hope this makes sense, I've been struggling with this problem for 3 days.