django-admin 명령어

정은경·2021년 2월 1일
0

django-admin

django-admin은 django의 관리 작업을 위한 커맨드 라인

django를 관리하기 위한 세 가지 방법:

1) django-admin [options]
2) django -m django [options]
3) django manage.py [options]

django의 주요 command

1) startapp : 앱을 생성합니다.
2) runserver : 서버를 실행합니다.
3) createsuperuser : 관리자를 생성합니다.
4) makemigrations app : app의 모델 변경 사항 체크합니다.
5) migrate : 변경 사항을 DB에 반영합니다.
6) shell : 쉘을 통해 데이터를 확인합니다.
7) collectstatic : 정적자원(css, html 등) 재수집(동기화)

Reference

profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글