From def627ea26355d57745a13b9b865151711706d52 Mon Sep 17 00:00:00 2001 From: jindonyy Date: Sat, 30 Jul 2022 00:24:49 +0900 Subject: [PATCH] =?UTF-8?q?Docs:=20README=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 110 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 100 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0e203d3ee..2a1e7b359 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,104 @@ -# todo-list -그룹 프로젝트 #1 +# 🗓 To do List -### 팀원소개 -|Name|Position|Des|github| -|--|--|--|--| -|Yan|BE|즐겜유저|| -|케이|BE|투머치토커|| -|dony|FE|FrontEnd DB|https://github.com/jindonyy| -|포키|FE|모찌누나|https://github.com/moonyerim2| +- To do 카드를 목록에 추가, 삭제, 수정할 수 있는 프로젝트 +- 기간: 2022.04.04 ~ 2022.04.15 -*** +
+ +## 👥 Team Members + +| Name | Position | Description | github | +| ---- | -------- | ----------- | ----------------------------- | +| Yan | BE | 즐겜유저 | https://github.com/KTH-96 | +| 케이 | BE | 투머치토커 | https://github.com/leekm0310 | +| dony | FE | FrontEnd DB | https://github.com/jindonyy | +| 포키 | FE | 모찌누나 | https://github.com/moonyerim2 | + +
+ +## 🛠 Skills + + + +
+ +## 🗂 Wiki [그라운드 룰](https://github.com/KTH-96/todo-list/wiki/Ground-Rule) + +
+ +## ✨ Feature + +- CRUD API를 사용하여 To do 카드를 추가, 삭제, 수정 구현 +- MVVM 아키텍처에 Controller를 추가하여 컴포넌트가의 의존성을 낮추려 시도 + +
+ +## 🖥 Demo + +https://user-images.githubusercontent.com/17706346/163720889-92f1f282-88c7-4929-b6b9-fbcc49d99613.mov + +
+ +## 📂 Directory + +``` +📂 static +├── index.html +└── 📂 resources + ├── 📂 images + │ ├── 📂 common + │ │ ├── icon-add-blue.png + │ │ ├── icon-add-gray.png + │ │ ├── icon-add.png + │ │ ├── icon-aside.png + │ │ ├── icon-close-gray.png + │ │ ├── icon-close-red.png + │ │ └── icon-close.png + │ └── fab.png + ├── 📂 js + │ ├── app.js + │ ├── 📂 controllers + │ │ └── boardController.js + │ ├── 📂 stores + │ │ └── boardStore.js + │ ├── 📂 utils + │ │ └── fetch.js + │ ├── 📂 viewModels + │ │ └── boardViewModel.js + │ └── 📂 views + │ ├── 📂 component + │ │ ├── board.js + │ │ ├── card.js + │ │ └── column.js + │ └── popup.js + └── 📂 scss + ├── 📂 components + │ ├── _card.scss + │ ├── _column.scss + │ ├── _header.scss + │ ├── _history.scss + │ ├── _layout.scss + │ └── _popup.scss + ├── main.scss + └── 📂 utils + ├── _common.scss + ├── _mixin.scss + ├── _reset.scss + └── variables + ├── _color.scss + └── _font.scss +``` + +
+ +## 🕹 How to use + +1. 터미널에 `npm run dev`를 입력한다. + +``` +npm run dev +``` + +2. http://localhost:9000/ 에 접속한다.