2. Structure of DRF
Django 프로젝트의 구조
manage.py
파일은 프로젝트의 entrypoint 같은 느낌. 여기서 모든게 시작된다.
migrate
command looks at theINSTALLED_APPS
setting and creates any necessary database tables according to the database settings in your mysite/settings.py file and the database migrations shipped with the app.
conf/settings.py 모든 세팅값이 들어가 있는 파일.
project vs. app
conf/settings.py
TIMEZONE
DATABASES
INSTALLED_APPS
더 찾아볼 것들
ORM
Last updated