UNPKG

760 BMarkdownView Raw
1exobot-build
2============
3
4Tools for building exobot instances, plugins, and adapters
5
6Installation
7------------
8
9* `npm install -g @exoplay/exobot-build`
10
11
12Usage
13-----
14
15### Bot creation
16
17`exobot new bot`
18
19### Plugin bootstrapping
20
21`exobot new plugin`
22
23### Adapter bootstrapping
24
25`exobot new adapter`
26
27### Other commands
28
29* `exobot build` builds an exobot instance where an `exobot.config.js` and
30 `package.json` is located.
31* `exobot watch` is `exobot build`, with a filesystem watcher to rebuild as
32 source code changes.
33* `exobot example` attempts to start up an example exobot from a folder
34 containing source code for an adapter or plugin.
35* `exobot run` builds and runs an exobot from an `exobot.config.js`.
36
37Use `exobot --help` for more information.