1. 기본 설치 프로그램 1) 파이썬(python) 2) 데이터베이스(database) 3) 파이참 설치(pycharm) 2. Bookmark 만들기 1) application 설계 - 화면 UI 설계 . 전체 리스트 화면(bookmark_list.html) . 상세 화면(bookmark_detail.html) - 테이블 설계 필드명 타입 제약조건 설명 id title url Integer CharField(100) URLField PK, Auto Increment Blank Unique 기본키(Primary Key) 북마크 제목 북마크 URL - 로직 설계 : URL → view → template 간의 처리 흐름 설계 URL view template 시작 → 전체 리스트 출력 /bookmark/ → ..