Skip to content

Commit

Permalink
fix README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jumtech authored and jumtech committed Aug 31, 2017
1 parent 572a3c2 commit 759f852
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,24 @@
- KARTEのmessageとassignのWebhookやAPIを使ったbotのサンプルです.

## 使い方
- [ ] `npm start`で5000番でサーバーを立ち上げる.
- [ ] `_config.coffee`ファイルを作成し、必要な設定値を追加する.
- [ ] KARTE管理画面から、botの設定を行います.
- [ ] `config.js`ファイルに必要な設定値を追加します.
- 以下のような内容で作成してください.

```coffee
```js
module.exports = {
KARTE_URL: "https://t.karte.io"
KARTE_BOT_APPLICATION_KEY: "bot設定画面のApplicationKeyを設定"
KARTE_BOT_SECRET_KEY: "bot設定画面のSecretKeyを設定"
ALGOLIA_APPLICATION_ID: "AlgoliaのApplicationIdを設定(Algolia検索を使う場合)"
ALGOLIA_API_KEY: "AlgoliaのApiKeyを設定(Algolia検索を使う場合)"
ALGOLIA_INDEX_NAME: "AlgoliaのIndexNameを設定(Algolia検索を使う場合)"
KARTE_URL: "https://t.karte.io",
KARTE_BOT_APPLICATION_KEY: "bot設定画面のApplicationKeyを設定",
KARTE_BOT_SECRET_KEY: "bot設定画面のSecretKeyを設定",
ALGOLIA_APPLICATION_ID: "AlgoliaのApplicationIdを設定(Algolia検索を使う場合)",
ALGOLIA_API_KEY: "AlgoliaのApiKeyを設定(Algolia検索を使う場合)",
ALGOLIA_INDEX_NAME: "AlgoliaのIndexNameを設定(Algolia検索を使う場合)",
A3RT_API_KEY: "A3RTのApiKeyを設定(A3RT APIを使う場合)"
}
```

- [ ] `npm start`で、port:5000番でサーバーが立ち上がります.

## bot仕様
- `/echo`
- 来たメッセージをそのまま返します.
Expand Down

0 comments on commit 759f852

Please sign in to comment.