forked from openstf/stf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
40 lines (38 loc) · 1.25 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var yargs = require('yargs')
var Promise = require('bluebird')
Promise.longStackTraces()
var _argv = yargs.usage('Usage: $0 <command> [options]')
.strict()
.command(require('./api'))
.command(require('./app'))
.command(require('./auth-ldap'))
.command(require('./auth-mock'))
.command(require('./auth-oauth2'))
.command(require('./auth-openid'))
.command(require('./auth-saml2'))
.command(require('./device'))
.command(require('./doctor'))
.command(require('./generate-fake-device'))
.command(require('./local'))
.command(require('./log-rethinkdb'))
.command(require('./migrate'))
.command(require('./notify-hipchat'))
.command(require('./notify-slack'))
.command(require('./poorxy'))
.command(require('./processor'))
.command(require('./provider'))
.command(require('./reaper'))
.command(require('./storage-plugin-apk'))
.command(require('./storage-plugin-image'))
.command(require('./storage-s3'))
.command(require('./storage-temp'))
.command(require('./triproxy'))
.command(require('./websocket'))
.demandCommand(1, 'Must provide a valid command.')
.help('h', 'Show help.')
.alias('h', 'help')
.version('V', 'Show version.', function() {
return require('../../package').version
})
.alias('V', 'version')
.argv