반응형

2024/09/10 2

[django] 어드민 계정 생성 및 비밀번호 초기화

1. 슈퍼 유저 생성하기 가장 먼저 슈퍼유저를 생성해 보겠습니다. 장고 터미널 내 아래와 같은 명령어를 입력합니다.python manage.py createsuperuserpython manage.py createuser - Username, Email, Password 를 입력하여 슈퍼유저(어드민)을 생성 2. 슈퍼 유저 비밀번호 초기화python manage.py changepassword - 관리자 계정의 비밀번호를 잃어버린 경우 'changepassword' 명령어를 입력하여 비밀번호를 초기화 할 수 있다. 3. 로컬 서버 실행 및 관리자 페이지 접속python manage.py runserver관리자 페이지 접속http://localhost:8000/admin/ 아주 잘 뜬다. ^^

Python 2024.09.10

[django] You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.Run 'python manage.py migrate' to apply them. 에러

장고 프로젝트를 생성하고앱을 생성을 하고 서버를 기동하려고 했더니 에러가 떴다.You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.Run 'python manage.py migrate' to apply them. 해결방법python manage.py makemigrationspython manage.py migrate위 두 명령어를 작성해줘야 한다​python manage.py makemigrations이 명령어는 Django 애플리케이션 내에서 모델 클래스에 대한 변경사항을 감지하고 데이터..

Python 2024.09.10
반응형