16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

hubotをforeverでデーモン化するときにハマった

Last updated at Posted at 2015-03-20

最新版のインストール方法だとcoffee-scriptをグローバルインストールしなくても動きます。

この方法でインストールしたら、foreverでデーモン化する際にハマってしまったのでメモ。

以下のコマンドで必ずcoffee-scriptをグローバルインストールしておくこと!

sudo npm install -g coffee-script

foreverでデーモン化するためのstart.sh

start.sh
#!/bin/bash

export HUBOT_CHATWORK_TOKEN="XXXXXXXX" # APIのアクセストークンを入力します。
export HUBOT_CHATWORK_ROOMS="ZZZZZZ"   # カンマ区切りでルームIDを指定します。
export HUBOT_CHATWORK_API_RATE="60"   # 1時間あたりのAPIリクエスト数(間隔)を指定します。

forever start -c coffee node_modules/.bin/hubot -a chatwork -n kaki-bot
16
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?