📢 공지사항
home

장고 1주차

4강

django 개발 패턴
MVC(Model View Controller)
Model
-django Databate
ex) django : Database
Item : Row
Attributes: Columns
View
-Request, Response (계산)
Template
-User Interface
-JS,HTML,CSS (프론트엔드)

5강

app 생성
-실행파일 Installed app에 추가
-유저 요청→account→urls→views→hello_world
accountapp

6강

Git
Version Control
추가적인 업데이트
roll back 가능
Branch
기존의 branch를 침범하지 않고 추가적인 branch 생성
Merge
Git Command
add
commit
push
pull
branch
checkout

7강

Gitignore 설정
venv등 소스 파일 이외의 항목 제외
환경 변수 분리
Secret Key
django-environ 라이브러리 : https://django-environ.readthedocs.io...
Git 활성화
git add . : 모든 파일 추적
git commit -m “Initial commit”
-m “ ” : 메세지 입력

8강

html
Hyper Text Markup Language
장고 Template extends / include
extends : Pre-made Template html, 틀
include : 세부 내용
Rseponse Vies : extends + include

9강

뼈대 html
{% include ‘ .html’ %} : 고정적인 html 은 독립적인 파일로 유지
{% block content %} {% endblock %} : block 생성
{% extends ‘ .html’ %} : 불러온 파일에서 block 내용만 수정 가능

10강

Header,Footer 꾸미기(style, 구글폰트)
head에 이용할 링크 추가
style
text-align: center ... : 정렬
margin
margin-bottom
margin-top
margin : 2rem 0 → 상하 2rem, 좌우0
구글폰트