1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 09:49:17 +02:00
OpenSTF/lib/cli/app/index.js

61 lines
1.6 KiB
JavaScript

module.exports.command = 'app'
module.exports.describe = 'Start an app unit.'
module.exports.builder = function(yargs) {
return yargs
.env('STF_APP')
.strict()
.option('auth-url', {
alias: 'a'
, describe: 'URL to the auth unit.'
, type: 'string'
, demand: true
})
.option('port', {
alias: 'p'
, describe: 'The port to bind to.'
, type: 'number'
, default: process.env.PORT || 7105
})
.option('secret', {
alias: 's'
, describe: 'The secret to use for auth JSON Web Tokens. Anyone who ' +
'knows this token can freely enter the system if they want, so keep ' +
'it safe.'
, type: 'string'
, default: process.env.SECRET
, demand: true
})
.option('ssid', {
alias: 'i'
, describe: 'The name of the session ID cookie.'
, type: 'string'
, default: process.env.SSID || 'ssid'
})
.option('user-profile-url', {
describe: 'URL to an external user profile page.'
, type: 'string'
})
.option('websocket-url', {
alias: 'w'
, describe: 'URL to the websocket unit.'
, type: 'string'
, demand: true
})
.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_APP_` (e.g. ' +
'`STF_APP_AUTH_URL`).')
}
module.exports.handler = function(argv) {
return require('../../units/app')({
port: argv.port
, secret: argv.secret
, ssid: argv.ssid
, authUrl: argv.authUrl
, websocketUrl: argv.websocketUrl
, userProfileUrl: argv.userProfileUrl
})
}