Doc the create-probot-plugin cli

This commit is contained in:
Brandon Keepers 2017-07-27 14:16:51 -05:00
parent e7e189e2ff
commit 20743926df
No known key found for this signature in database
GPG Key ID: F9533396D5FACBF6
1 changed files with 6 additions and 3 deletions

View File

@ -108,11 +108,14 @@ $ node_modules/.bin/probot simulate issues test/fixtures/issues.labeled.json ./i
Plugins can be published in npm modules, which can either be deployed as stand-alone bots, or combined with other plugins.
Use the [plugin-template](https://github.com/probot/plugin-template) repository to get started building your plugin as a node module.
Use [create-probot-plugin](https://github.com/probot/create-probot-plugin) to get started building your plugin as a node module.
```
$ curl -L https://github.com/probot/plugin-template/archive/master.tar.gz | tar xvz
$ mv plugin-template-master probot-myplugin && cd probot-myplugin
$ npm install -g create-probot-app
$ create-probot-plugin my-plugin
$ cd my-plugin
$ npm install
```
## Next