Showing
1 changed file
with
52 additions
and
3 deletions
1 | +[![node](https://img.shields.io/badge/Node-v16.15.0-important?logo=nodedotjs)](https://nodejs.org/ko/) [![express](https://img.shields.io/badge/Express-4.18.1-important?logo=express)](https://expressjs.com/ko/) | ||
2 | +[![puppeteer](https://img.shields.io/badge/puppeteer-v14.1.1-success?logo=Puppeteer)](https://github.com/puppeteer/puppeteer) [![selenium-webdriver](https://img.shields.io/badge/selenium--webdriver-v4.1.2-success?logo=Selenium)](https://www.selenium.dev/documentation/webdriver/) [![express-async-handler](https://img.shields.io/badge/express--async--handler-v1.2.0-success)](https://www.npmjs.com/package/express-async-handler) [![cheerio](https://img.shields.io/badge/cheerio-v1.0.0--rc.11-success)](https://cheerio.js.org/) | ||
1 | # 3대 멀티플렉스 통합 예매 챗봇 | 3 | # 3대 멀티플렉스 통합 예매 챗봇 |
2 | 4 | ||
3 | 5 | ||
... | @@ -20,26 +22,73 @@ CGV, 롯데시네마, MEGABOX 영화관의 정보를 통합 제공 및 예매를 | ... | @@ -20,26 +22,73 @@ CGV, 롯데시네마, MEGABOX 영화관의 정보를 통합 제공 및 예매를 |
20 | + Line Messaging API | 22 | + Line Messaging API |
21 | + Kakao Search-by-Keyword API | 23 | + Kakao Search-by-Keyword API |
22 | 24 | ||
23 | -## Getting Started | ||
24 | 25 | ||
25 | -### Prerequisites | 26 | +## Getting Started |
26 | 27 | ||
27 | ### Installation | 28 | ### Installation |
28 | 29 | ||
30 | +1. Kakao REST API관련 KEY를 발급받습니다. | ||
31 | + | ||
32 | ++ [Kakao Search API](https://developers.kakao.com/) | ||
33 | + | ||
34 | +2. 해당 Repository를 Clone합니다. | ||
35 | + | ||
36 | + `git clone http://khuhub.khu.ac.kr/{YourID}/Multiplex_Ticketing_Platform.git` | ||
37 | + | ||
38 | +3. 코드를 실행하는데 필요한 npm 요소들을 Install합니다. | ||
39 | + | ||
40 | + `npm install` | ||
41 | + | ||
42 | +4. 코드에 본인이 발급받은 Kakao REST API KEY를 입력합니다. | ||
43 | + | ||
44 | + `const KAKAO_KEY = '{YOUR OWN KAKAO REST API KEY}';` | ||
45 | + | ||
46 | +5. QR 코드를 휴대폰의 카메라로 스캔하거나 <__@583zdtpz__>을 친구 찾기에 입력하여 "영화관통합예매챗봇"을 추가합니다. | ||
47 | + | ||
48 | +![](https://qr-official.line.me/sid/L/583zdtpz.png) | ||
49 | + | ||
50 | + | ||
51 | +## Usage | ||
52 | + | ||
53 | +챗봇을 추가하게 되면 자동으로 다음과 같은 메세지가 전송됩니다. | ||
54 | + | ||
55 | +![chatbot start message](https://ifh.cc/g/xfZdhM.png) | ||
29 | 56 | ||
30 | -# Contributing | 57 | +영화 예매 링크를 받는데 까지는 총 4가지의 단계를 거치게 됩니다! |
58 | + | ||
59 | +1. 브랜드 선택 | ||
60 | +2. 영화관 선택 | ||
61 | +2-1. 영화관 세부 선택 | ||
62 | +3. 날짜 선택 | ||
63 | +4. 상영 중인 영화 목록에서 원하는 영화 선택 | ||
64 | + | ||
65 | +위와 같은 단계로 입력이 모두 완료되면 선택하신 영화 예매 링크 및 영화관 위치 링크를 챗봇을 통해 바로 전달받으실 수 있습니다!! | ||
66 | + | ||
67 | + | ||
68 | +## Contributing | ||
31 | 69 | ||
32 | 1. 해당 Repository를 Fork합니다. | 70 | 1. 해당 Repository를 Fork합니다. |
71 | + | ||
33 | `git fork http://khuhub.khu.ac.kr/2021105632/Multiplex_Ticketing_Platform.git` | 72 | `git fork http://khuhub.khu.ac.kr/2021105632/Multiplex_Ticketing_Platform.git` |
73 | + | ||
34 | 2. Fork한 Repository를 Clone합니다. | 74 | 2. Fork한 Repository를 Clone합니다. |
75 | + | ||
35 | `git clone http://khuhub.khu.ac.kr/{YourID}/Multiplex_Ticketing_Platform.git` | 76 | `git clone http://khuhub.khu.ac.kr/{YourID}/Multiplex_Ticketing_Platform.git` |
77 | + | ||
36 | 3. 당신이 개발하고자 하는 기능의 Branch를 추가합니다. | 78 | 3. 당신이 개발하고자 하는 기능의 Branch를 추가합니다. |
79 | + | ||
37 | `git checkout -b feature/{YourBranchName}` | 80 | `git checkout -b feature/{YourBranchName}` |
81 | + | ||
38 | 4. 기능을 구현합니다. | 82 | 4. 기능을 구현합니다. |
83 | + | ||
39 | 5. 당신이 추가한 기능 또는 수정 사항을 Commit합니다. | 84 | 5. 당신이 추가한 기능 또는 수정 사항을 Commit합니다. |
85 | + | ||
40 | `git commit -m 'Add feature {FeatureName}'` | 86 | `git commit -m 'Add feature {FeatureName}'` |
87 | + | ||
41 | 6. 당신의 Branch를 Push합니다. | 88 | 6. 당신의 Branch를 Push합니다. |
89 | + | ||
42 | `git push origin feature/{YourBranchName}` | 90 | `git push origin feature/{YourBranchName}` |
91 | + | ||
43 | 7. Pull Request를 엽니다. | 92 | 7. Pull Request를 엽니다. |
44 | 93 | ||
45 | 94 | ... | ... |
-
Please register or login to post a comment