balena-cli/lib/app.coffee
2014-11-20 13:03:23 -04:00

42 lines
1.2 KiB
CoffeeScript

data = require('./data/data')
config = require('./config')
yargs = require('yargs')
yargs.command = require('./yargs-command/yargs-command')
yargs.usage('$0 [options] <command>')
# ---------- Auth Module ----------
auth = require('./actions/auth')
# TODO: Re enable optional interactivity
yargs.command('login [username:password]', auth.login)
yargs.command('logout', auth.logout)
yargs.command('signup', auth.signup)
# ---------- App Module ----------
app = require('./actions/app')
yargs.command('apps', app.list)
yargs.command('app <id>', app.info)
yargs.command('app restart <id>', app.restart)
# ---------- Device Module ----------
device = require('./actions/device')
yargs.command('devices <id>', device.list)
# ---------- Preferences Module ----------
preferences = require('./actions/preferences')
yargs.command('preferences', preferences.preferences)
# ---------- Version Module ----------
version = require('./actions/version')
yargs.command('version', version.version)
# ---------- Keys Module ----------
keys = require('./actions/keys')
yargs.command('keys', keys.list)
data.prefix.set config.dataPrefix, (error) ->
throw error if error?
yargs.command.run()