Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sapphi-red/hubot-traq
Hubot adapter for traQ
https://github.com/sapphi-red/hubot-traq
hubot-adapter traq traq-bot
Last synced: about 1 month ago
JSON representation
Hubot adapter for traQ
- Host: GitHub
- URL: https://github.com/sapphi-red/hubot-traq
- Owner: sapphi-red
- License: mit
- Created: 2019-05-30T11:21:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-19T12:50:13.000Z (3 months ago)
- Last Synced: 2024-10-29T03:19:15.967Z (2 months ago)
- Topics: hubot-adapter, traq, traq-bot
- Language: JavaScript
- Homepage:
- Size: 178 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# hubot-traq
[![npm version](https://badge.fury.io/js/hubot-traq.svg)](https://badge.fury.io/js/hubot-traq) ![automatic release](https://github.com/sapphi-red/hubot-traq/workflows/automatic%20release/badge.svg) [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)[traQ][]用[Hubot][]アダプター
## 使い方
### 新しいbotをつくる
#### インストール
前提として[Node.js][]が必要です
```bash
# 利用ツールのインストール
npm install -g yo generator-hubot
# botを管理するディレクトリの作成
mkdir -p /path/to/myhubot
cd /path/to/myhubot
# テンプレートの作成
yo hubot
```ここまでしたら、画面にしたがって入力していき、**Bot adapter**と表示されたら`hubot-traq`と入力します
(もしくは`yo hubot`のあとに[すべてコマンド引数で指定することもできます][cmd-docs])既定で入っているscriptsが存在するので一度除きます(このままだとredisがないだの怒られるため)
具体的には`./external-scripts.json`を開いて`[]`にします
追加で`package.json`の`dependencies`の`hubot`と`hubot-traq`以外を取り除いて`npm install`をするといいでしょう```bash
# gitレポジトリの作成
git init
git add .
git commit -m "Init"
```#### 初期設定
下記の環境変数をそれぞれ設定します
- `HUBOT_TRAQ_NAME` - traQで動かすHubotのtraQ ID (例: `@BOT_TEST`なら`BOT_TEST`)
- `HUBOT_TRAQ_MODE` - BOTのモード (`HTTP`または`WebSocket`、省略時は`HTTP`)
- `HUBOT_TRAQ_ACCESS_TOKEN` - traQで動かすHubotのAccess Token
- `HUBOT_TRAQ_EMBED` - メンション・チャンネルリンクの自動埋め込みの有無(`TRUE`にすると有効、省略時は無効)
- `PORT`または`EXPRESS_PORT` - [HTTPモードでのポート](https://github.com/hubotio/hubot/blob/master/docs/scripting.md#http-listener) (省略時は`8080`)
- 以下はHTTPモードのときのみ必要
- `HUBOT_TRAQ_VERIFY_TOKEN` - traQで動かすHubotのVerification Code
- `HUBOT_TRAQ_PATH` - Botサーバーエンドポイントのパス(直下で受け取るなら`""`、`/webhook/`で受け取るなら`"/webhook/"`)Verification CodeなどはそれぞれtraQのBot Consoleから確認できます
#### 実行
`package.json`の`scripts`の`start`を以下のように変更します```diff
- "start": "hubot -a hubot-traq",
+ "start": "hubot -a hubot-traq -n \"$HUBOT_TRAQ_NAME\" \"$@\"",
```#### showcaseへのデプロイ
以下の設定で動作します- Deploy Type: `Runtime`
- Build Type: `Buildpack`
- Context: `.`
- Use Database: BotでDBを使うか次第---
さらに詳しい説明は[hubotのドキュメント][docs]を参照してください
## Changelog
- [Change log][]## リファレンス
- [Wiki][]
- [Example][]
- [Example with Typescript][][traQ]: https://github.com/traPtitech/traQ/
[Hubot]: https://hubot.github.com/
[Node.js]: https://nodejs.org/ja/
[cmd-docs]: https://hubot.github.com/docs/
[docs]: https://github.com/github/hubot/tree/master/docs
[Wiki]: https://github.com/sapphi-red/hubot-traq/wiki
[Example]: https://github.com/sapphi-red/traq-hubot-example
[Example with Typescript]: https://github.com/sapphi-red/traq-hubot-example-ts
[Change log]: https://github.com/sapphi-red/hubot-traq/blob/master/CHANGELOG.md