📢 공지사항
home

2주차 레포트 - 섹션 4,5,6

일정
2022/05/14 → 2022/05/20
제출
체킹

App Programming Basic Routine

1.
python manage.py startapp exapp (example app)
2.
settings.py INSTALLED_APP 에 exapp 추가
urls.py urlpatterns 에 path ('exs/', include('exapp.urls')) 추가
3.
appname 에 urls.py 파일 생성 후
1) app_name = ‘exapp’ 설정
2) urlpatterns 에 exapp\templates\exapp 소속 html 페이지들의 path 추가
ex) path('create/', ProfileCreateView.as_view(), name='create')
4.
models.py, forms.py 에서 Model 설정 후 makesmigrations & migrate
5.
views.py 에서 View 설정 (겹치는 코드가 많을 시 decorator 활용)
6.
화면 출력 용(templates) html 파일 작성
ex) Create 페이지, Delete 페이지, Detail 페이지 등
Profileapp 프로필 구현
Articleapp 글 기능 구현
Commentapp 댓글 기능 구현