mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 04:53:19 +02:00
Ported CLI from commander to yargs because yargs suits our large CLI better and is easier to develop with. Split commands into separate files since the file was getting annoyingly long.
This commit is contained in:
40
lib/cli/storage-plugin-apk/index.js
Normal file
40
lib/cli/storage-plugin-apk/index.js
Normal file
@@ -0,0 +1,40 @@
|
||||
module.exports.command = 'storage-plugin-apk'
|
||||
|
||||
module.exports.describe = 'Start an APK storage plugin unit.'
|
||||
|
||||
module.exports.builder = function(yargs) {
|
||||
var os = require('os')
|
||||
|
||||
return yargs
|
||||
.env('STF_STORAGE_PLUGIN_APK')
|
||||
.strict()
|
||||
.option('port', {
|
||||
alias: 'p'
|
||||
, describe: 'The port to bind to.'
|
||||
, type: 'number'
|
||||
, default: process.env.PORT || 7100
|
||||
})
|
||||
.option('storage-url', {
|
||||
alias: 'r'
|
||||
, describe: 'URL to the storage unit.'
|
||||
, type: 'string'
|
||||
, demand: true
|
||||
})
|
||||
.option('cache-dir', {
|
||||
describe: 'The location where to cache images.'
|
||||
, type: 'string'
|
||||
, default: os.tmpdir()
|
||||
})
|
||||
.epilog('Each option can be be overwritten with an environment variable ' +
|
||||
'by converting the option to uppercase, replacing dashes with ' +
|
||||
'underscores and prefixing it with `STF_STORAGE_PLUGIN_APK_` (e.g. ' +
|
||||
'`STF_STORAGE_PLUGIN_APK_CACHE_DIR`).')
|
||||
}
|
||||
|
||||
module.exports.handler = function(argv) {
|
||||
return require('../../units/storage/plugins/apk')({
|
||||
port: argv.port
|
||||
, storageUrl: argv.storageUrl
|
||||
, cacheDir: argv.cacheDir
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user