2019-05-20 11:18:25 +00:00
|
|
|
import path from 'path';
|
|
|
|
|
2019-05-23 21:26:31 +00:00
|
|
|
import c from './bootstrap/container.mjs';
|
|
|
|
|
|
|
|
const a = c.resolve("ansi");
|
2019-05-20 13:38:20 +00:00
|
|
|
|
2019-05-20 11:18:25 +00:00
|
|
|
export default function(settings) {
|
2019-05-23 21:26:31 +00:00
|
|
|
|
2019-05-20 11:18:25 +00:00
|
|
|
console.log(`${settings.program_name}, ${settings.version}
|
2019-05-23 21:26:31 +00:00
|
|
|
${a.locol}By Starbeamrainbowlabs${a.reset}
|
2019-05-20 11:18:25 +00:00
|
|
|
|
2019-05-23 21:26:31 +00:00
|
|
|
${a.hicol}This program ${settings.description}.${a.reset}
|
2019-05-20 11:18:25 +00:00
|
|
|
|
2019-05-23 21:26:31 +00:00
|
|
|
${a.fblue}${a.hicol}Usage:${a.reset}
|
2019-05-20 11:18:25 +00:00
|
|
|
node --experimental-modules ${path.relative(process.cwd(), process.argv[1])} {subcommand} {options}
|
|
|
|
|
2019-05-23 21:26:31 +00:00
|
|
|
${a.fblue}${a.hicol}Subcommands:${a.reset}
|
|
|
|
${a.fyellow}ttn-app-server${a.reset} Starts the thing network application server
|
|
|
|
${a.fyellow}process-data${a.reset} Consolidates collected data from the IoT device and the TTN app server
|
|
|
|
${a.fyellow}train-ai${a.reset} Trains the AI on the consolidated data
|
|
|
|
${a.fyellow}serve-map${a.reset} Serves the final output map using the trained AI
|
2019-05-20 11:18:25 +00:00
|
|
|
|
2019-05-23 21:26:31 +00:00
|
|
|
${a.fblue}${a.hicol}Options:${a.reset}
|
|
|
|
${a.fyellow}-h --help ${a.reset}Show this message
|
|
|
|
${a.fyellow}-v --version ${a.reset}Show the version of this program
|
2019-05-20 11:18:25 +00:00
|
|
|
|
2019-05-23 21:26:31 +00:00
|
|
|
${a.fblue}${a.hicol}Environment Variables:${a.reset}
|
2019-05-20 11:18:25 +00:00
|
|
|
(none yet)
|
|
|
|
`);
|
|
|
|
};
|