WET_1 | [Django] RuntimeError

code_sign·2021년 1월 30일
0

WET

목록 보기
1/3
post-thumbnail
post-custom-banner

🚨오류!🚨

RuntimeError: Model class user.models.Accounts doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.

settings.py에 해당되는 app을 추가안해줘서 나는 에러.

💡해결방법💡

INSTALLED_APPS = [
    # 'django.contrib.admin',
    # 'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'corsheaders',
]

해당 project의 settings.py의 INSTALLED_APPS에 추가해준다!

profile
방탈출 좋아하는 코딩덕후
post-custom-banner

0개의 댓글