최현준

README.md 수정

Showing 1 changed file with 16 additions and 9 deletions
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
55 * [About the Project](#about-the-project) 55 * [About the Project](#about-the-project)
56 * [Built With](#built-with) 56 * [Built With](#built-with)
57 * [Getting Started](#getting-started) 57 * [Getting Started](#getting-started)
58 - * [Prerequisites](#prerequisites) 58 + * [Installation](#installation)
59 * [Usage](#usage) 59 * [Usage](#usage)
60 * [Roadmap](#roadmap) 60 * [Roadmap](#roadmap)
61 * [Contributing](#contributing) 61 * [Contributing](#contributing)
...@@ -97,15 +97,23 @@ A list of commonly used resources that I find helpful are listed in the acknowle ...@@ -97,15 +97,23 @@ A list of commonly used resources that I find helpful are listed in the acknowle
97 2. 정보제공동의<br/> 97 2. 정보제공동의<br/>
98 ChatBot에게 대화를 걸어, 정보 제공 동의를 진행합니다.<br/> 98 ChatBot에게 대화를 걸어, 정보 제공 동의를 진행합니다.<br/>
99 99
100 -### Prerequisites 100 +### Installation
101 101
102 -Server를 실행시키기 전에, 먼저 해야할 것들입니다. 102 +1. Clone the repo
103 -* npm 103 +```sh
104 +git clone http://khuhub.khu.ac.kr/2017104037/OSS_LINEBOT_kikitank1.git
105 +```
106 +2. Install NPM
104 ```sh 107 ```sh
105 npm install request 108 npm install request
106 npm install express 109 npm install express
107 npm install async 110 npm install async
108 ``` 111 ```
112 +3. Enter your info
113 +```sh
114 +const domain = "Your Domain";
115 +const sslport = "Your sslport";
116 +```
109 117
110 <!-- USAGE EXAMPLES --> 118 <!-- USAGE EXAMPLES -->
111 ## Usage 119 ## Usage
...@@ -115,9 +123,10 @@ npm install async ...@@ -115,9 +123,10 @@ npm install async
115 1.2. 채팅을 합니다.<br/> 123 1.2. 채팅을 합니다.<br/>
116 <br/> 124 <br/>
117 2. 날씨기능<br/> 125 2. 날씨기능<br/>
118 -1.1. '날씨'를 칩니다.<br/> 126 +2.1. 알고싶은 지역을 적습니다. ex) '서울', '수원', '밀양'<br/>
127 +2.2. '날씨'를 칩니다.<br/>
119 128
120 -더 많은 정보를 원하신다면, [파파고Documentation](https://developers.naver.com/docs/papago/), [라인Documentation](https://developers.line.biz/en/docs/)를 참고해주세요. 129 +더 많은 정보를 원하신다면, [파파고Documentation](https://developers.naver.com/docs/papago/), [라인Documentation](https://developers.line.biz/en/docs/), [기상청openAPI](https://www.data.go.kr/tcs/dss/selectApiDataDetailView.do?publicDataPk=15057682)를 참고해주세요.
121 130
122 <!-- ROADMAP --> 131 <!-- ROADMAP -->
123 ## Roadmap 132 ## Roadmap
...@@ -125,14 +134,12 @@ npm install async ...@@ -125,14 +134,12 @@ npm install async
125 <!-- See the [open issues](https://github.com/othneildrew/Best-README-Template/issues) for a list of proposed features (and known issues). --> 134 <!-- See the [open issues](https://github.com/othneildrew/Best-README-Template/issues) for a list of proposed features (and known issues). -->
126 [open issues](http://khuhub.khu.ac.kr/2017104037/OSS_LINEBOT_kikitank1/issues)를 참고해주세요. 135 [open issues](http://khuhub.khu.ac.kr/2017104037/OSS_LINEBOT_kikitank1/issues)를 참고해주세요.
127 136
128 -
129 -
130 <!-- CONTRIBUTING --> 137 <!-- CONTRIBUTING -->
131 ## Contributing 138 ## Contributing
132 139
133 <!-- Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. --> 140 <!-- Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. -->
134 기여를 하고 싶으시다면, 아래와 같이 해주세요. 141 기여를 하고 싶으시다면, 아래와 같이 해주세요.
135 -언제든지 환영입니다! 142 +<br/>언제든지 환영입니다!
136 143
137 1. Fork the Project 144 1. Fork the Project
138 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 145 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
......