장수창

modified readme

1 -# __LineBot__
2 - 라인 챗봇 서비스 개발
3 -### 2015104213 장수창
4 -
5 -## __기능__
6 ----
7 -- 번역
8 -- 날씨
9 -- 추가 예정
...\ No newline at end of file ...\ No newline at end of file
1 +<!-- PROJECT TITLE -->
2 +# Covid-19 Information Chatbot
3 + ### 코로나 바이러스 감염증-19(COVID-19) 관련 정보 챗봇
4 + <img src="image/name.png" width="320" height="280">
5 +
6 +
7 +<!-- TABLE OF CONTENTS -->
8 +## Table of Contents
9 +
10 +### * [About the Project](#about-the-project)
11 + * [Built With](#built-with)
12 +
13 +### * [Getting Started](#getting-started)
14 + * [Installation](#installation)
15 +
16 +### * [Usage](#usage)
17 +### * [Contributing](#contributing)
18 +### * [Contact](#contact)
19 +
20 +
21 +<!-- About The Project -->
22 +## About The Project
23 + * Line messaging API 기반 코로나 바이러스 감염증-19(COVID-19) 관련 정보 챗봇입니다.
24 +주 기능은 확진환자의 역학조사가 끝나거나 신규 확진자 발생 시 알림 메세지 전송입니다.
25 +
26 +
27 +### Built With
28 +* [Nodejs](https://nodejs.org/ko/)
29 +* [Line Messaging API](https://developers.line.biz/en/services/messaging-api/)
30 +* [Naver Search API](https://developers.naver.com/products/search/)
31 +
32 +
33 +<!-- GETTING STARTED -->
34 +## Getting Started
35 + 1. [LINE](https://line.me/ko/) 설치<br/>
36 +
37 + 2. 친구 추가<br/>
38 + * QR code<br/>
39 +<img src="image/QRcode.PNG" width="200" height="200"> <br/>
40 +
41 + 상단의 QR code를 통해 친구추가를 할 수 있습니다.<br/>
42 +
43 + * ID <br/>
44 + 아이디를 통해 친구추가를 할 수 있습니다. 아이디는 '@453hriym' 입니다. <br/>
45 +<br/>
46 +
47 + 3. 정보제공동의<br/>
48 + 코로나알리미와의 채팅창에서 정보 제공 동의 진행을 해야합니다. <br/>
49 +
50 +
51 +### Installation
52 +
53 + 1. Clone the repository
54 + ```
55 + git clone http://khuhub.khu.ac.kr/2015104213/oss_Termproject_chatbot.git
56 + ```
57 + 2. Install NPM
58 + ```
59 + npm install request
60 + npm install express
61 + npm install axios
62 + npm install cheerio
63 + ```
64 + 3. Enter your information
65 + ```
66 + const TOKEN = 'Your Token'
67 + const NAVER_NEWS_ID = 'Your id'
68 + const NAVER_NEWS_SECRET = 'Your secret'
69 + const domain = "Your Domain"
70 + const sslport = Your port;
71 + ```
72 +
73 +<!-- USAGE EXAMPLES -->
74 +## Usage
75 + * 코로나 알리미에게 사용 방법에 대해 물어보세요. 키워드는 '어떻게'입니다. <br/>
76 +
77 + * 국내 현황 <br/>
78 + 코로나 알리미에게 COVID-19 국내 현황에 대해 물어보세요. 키워드는 '국내'입니다.<br/>
79 +<br/>
80 +
81 +
82 + * 관련 뉴스 <br/>
83 + 코로나 알리미에게 COVID-19 관련 뉴스에 대해 물어보세요. 키워드는 '뉴스'입니다.<br/>
84 + <br/>
85 +
86 + * 확진자 동선 알림 (용인시) <br/>
87 + 코로나 알리미가 새로운 확진자의 동선이 사이트에 올라오면 이를 실시간으로 알려줍니다. <br/>
88 +
89 +
90 +<!-- CONTRIBUTING -->
91 +## Contributing
92 +
93 +1. Fork the Project
94 +2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
95 +3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
96 +4. Push to the Branch (`git push origin feature/AmazingFeature`)
97 +5. Open a Pull Request
98 +
99 +
100 +<!-- CONTACT -->
101 +## Contact
102 +
103 +Suchang Jang - sudori1024@khu.ac.kr <br/>
104 +
105 +Project Link: [http://khuhub.khu.ac.kr/2015104213/oss_Termproject_chatbot.git](http://khuhub.khu.ac.kr/2015104213/oss_Termproject_chatbot.git)
...\ No newline at end of file ...\ No newline at end of file
......