hapi.app
Version:
HAPI application generator
13 lines (8 loc) • 354 B
text/coffeescript
runCommand = require "../src/runExternalCommand"
targetCommand = "node_modules/hapi.app.server/bin/server"
module.exports.targetCommand = targetCommand
module.exports.command = ->
args = [targetCommand]
args.push value for own k, value of arguments
runCommand.apply this, args
module.exports.help = "start starts an HAPI app"