-생성
$ python -m venv venv
$ python3 -m venv venv
-실행
$ source Scripts/activate
-MacOS
$ source bin/activate
$ pip install django==3.2.18 django-extensions ipython Pillow
$ django-admin startproject crud
$ python manage.py startapp articles
파일 경로 ➡️ crud/setting.py
파일 경로 ➡️ crud/urls.py
파일 경로 ➡️ templates/base.html
파일 경로 ➡️ crud/settings.py
파일 경로 ➡️ articles/urls.py
파일 경로 ➡️ articles/views.py
파일 경로 ➡️ articles/templates/articles/index.html
파일 경로 ➡️ articles/models.py
파일 경로 ➡️ articles/admin.py
$ python manage.py makemigrations
$ python manage.py migrate
파일 경로 ➡️ articles/urls.py
파일 경로 ➡️ articles/views.py
파일 경로 ➡️ articles/templates/articles/new.html
파일 경로 ➡️ articles/templates/articles/index.html
파일 경로 ➡️ articles/templates/articles/new.html
파일 경로 ➡️ articles/urls.py
파일 경로 ➡️ articles/views.py
파일 경로 ➡️ articles/urls.py
파일 경로 ➡️ articles/views.py
파일 경로 ➡️ articles/templates/articles/detail.html
파일 경로 ➡️ articles/views.py
파일 경로 ➡️ articles/index.html
파일 경로 ➡️ articles/templates/articles/detail.html
파일 경로 ➡️ articles/urls.py
파일 경로 ➡️ articles/views.py
파일 경로 ➡️ articles/edit.html
파일 경로 ➡️ articles/urls
파일 경로 ➡️ articles/views
파일 경로 ➡️ articles/templates/articles/detail.html
파일 경로 ➡️ articles/urls
파일 경로 ➡️ articles/views