Minkyung Ko

Update README.md Ver.12

Showing 1 changed file with 13 additions and 7 deletions
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
14 14
15 1. [About The Project](#about-the-project) 15 1. [About The Project](#about-the-project)
16 2. [Built With](#built-with) 16 2. [Built With](#built-with)
17 -3. [Installation](#installation) 17 +3. [Getting Started](#getting-started)
18 4. [Usage](#usage) 18 4. [Usage](#usage)
19 5. [Roadmap](#roadmap) 19 5. [Roadmap](#roadmap)
20 6. [Contributing](#contributing) 20 6. [Contributing](#contributing)
...@@ -47,8 +47,9 @@ ...@@ -47,8 +47,9 @@
47 47
48 48
49 49
50 -## Installation 50 +## Getting Started
51 __user__ 51 __user__
52 +0. Install Node.js(https://nodejs.org/ko/)
52 1. Clone the repo 53 1. Clone the repo
53 ``` 54 ```
54 git clone http://khuhub.khu.ac.kr/2018103692/find_mbti_bot 55 git clone http://khuhub.khu.ac.kr/2018103692/find_mbti_bot
...@@ -58,8 +59,12 @@ __user__ ...@@ -58,8 +59,12 @@ __user__
58 npm install 59 npm install
59 ``` 60 ```
60 3. Put your secret API KEY in `.env` 61 3. Put your secret API KEY in `.env`
61 - If you have not installed dotenv module, enter the following command to install. 62 + This project needs Naver Open API(Client ID, Client Secret) & Kakao API(Kakao REST API Key)
63 +
64 +4. If modules are not installed, enter the following command to install:
62 ``` 65 ```
66 + npm install express --save
67 + npm install router
63 npm install dotenv 68 npm install dotenv
64 ``` 69 ```
65 70
...@@ -74,9 +79,10 @@ __developer__ ...@@ -74,9 +79,10 @@ __developer__
74 4. 디렉토리에 있는 app.js에서 각 route마다 다음으로 연결될 블록 ID 입력 79 4. 디렉토리에 있는 app.js에서 각 route마다 다음으로 연결될 블록 ID 입력
75 사용자 발화시 UserRequest.blockid나 80 사용자 발화시 UserRequest.blockid나
76 i.kakao.com의 블록에서 url을 통해 확인할 수 있음 81 i.kakao.com의 블록에서 url을 통해 확인할 수 있음
77 -5. 배포 82 +5. 배포 및 실행
78 -6. npm install 83 +
79 -7. 실행 84 +
85 +<p align="right">(<a href="#top">back to top</a>)</p>
80 86
81 87
82 88
...@@ -97,7 +103,7 @@ __developer__ ...@@ -97,7 +103,7 @@ __developer__
97 <img src="test.jpg" width="300px" height="400px"></img><br/> 103 <img src="test.jpg" width="300px" height="400px"></img><br/>
98 104
99 * 20개의 질문에 모두 응답을 하면 MBTI 결과가 나타납니다. 본인의 MBTI 관련 게시물들도 확인할 수 있으니 구경해 보세요! 105 * 20개의 질문에 모두 응답을 하면 MBTI 결과가 나타납니다. 본인의 MBTI 관련 게시물들도 확인할 수 있으니 구경해 보세요!
100 -<img src="result.jpg" width="300px" height="300px"></img><br/> 106 +<img src="result.jpg" width="300px" height="350px"></img><br/>
101 107
102 * 테스트를 하다가 처음부터 다시 시작하고 싶을 때에는 채팅창에 "테스트 시작하기"를 입력해 주세요. 108 * 테스트를 하다가 처음부터 다시 시작하고 싶을 때에는 채팅창에 "테스트 시작하기"를 입력해 주세요.
103 109
......