Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 497 Bytes

Cheat_Sheet.md

File metadata and controls

36 lines (29 loc) · 497 Bytes

Cheat sheet

새 프로젝트 생성

django-admin startproject projectname

프로젝트에 App 추가

python manage.py startapp appname

서버 켜기

python manage.py runserver

migrations 만들기

python manage.py makemigrations

DB migrate 하기

python manage.py migrate

관리자(admin) 계정 만들기

python manage.py createsuperuser

Static 파일 collecting 하기

python manage.py collectstatic