noelcool / python-django-tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python-django-tutorial

프로젝트 만들기

django-admin startproject mysite

dev run

python3 manage.py runserver

앱 만들기

python3 manage.py startapp polls

테이블 생성

python3 manage.py migrate

모델 변경 사항 저장

python3 manage.py makemigrations polls

migration이 내부적으로 어떤 SQL을 실행하는지 확인

python3 manage.py sqlmigrate polls 0001

cli에서 테스트하기

python3 manage.py shell

관리자 생성

python3 manage.py createsuperuser

Reference

  • https://docs.djangoproject.com/

About


Languages

Language:Python 89.8%Language:HTML 10.2%