#!/usr/bin/env node /** * The main elements command line tool. */ const program = require('commander'); program .version(require('../package.json').version) .command('build [command] [options]', 'build your application') .command('console [options]', 'start an elements console') .command('db [command] [options]', 'run database commands') .command('deploy [options]', 'deploy your application') .command('generate [options]', 'generate application files from templates') .command('maint', 'run the maintenance server') .command('start [options]', 'start the development environment') .command('server [options]', 'start the http server') .command('test [options]', 'start the test runner') .parse(process.argv);