LoginSignup
1
2

More than 5 years have passed since last update.

Google Compute EngineでHubotを動かす

Posted at

私的メモ

Compute Engineのインスタンス作成

  • OSは「Debian GNU/Linux 9 (stretch)」にしました。

Node.jsをインストール

apt-getを最新にする

$ apt-get update

Node.jsをインストール

$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
$ apt-get install -y nodejs

npmを最新にする

$ npm install -g npm

Hubotをインストール

npmでモジュールをいれる。

$ npm install -g hubot yo generator-hubot coffee-script

Hubotの設定

$ yo hubot

Hubot起動

$ ./bin/hubot

参考記事

1
2
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
1
2