heroku/heroku-local

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'

const flatten = require('lodash.flatten')

exports.topic = {
  name: 'local',
  description: 'run heroku app locally'
}

exports.commands = flatten([
  require('./commands/start'),
  require('./commands/run'),
  require('./commands/version')
])