PromucFlow_constructor/deploy/docker/utils/bin/utils.js
Shrikant Sharat Kandula f0a61285a6
docs: Fat container documentation fixes (#7207)
Added additional details about how to use the fat container, and how to manage / maintain it.

Also includes some refactorings that shouldn't affect the functionality significantly.
2021-09-14 19:01:06 +05:30

15 lines
467 B
JavaScript

const chalk = require('chalk')
const usage = chalk.hex('#83aaff')("\nUsage: appsmith <command> to interactive with appsmith utils toool");
module.exports = {showHelp: showHelp};
function showHelp() {
console.log(usage);
console.log('\nOptions:\r')
console.log('\tex, export_db\t\tExport interal database.\r')
console.log('\tim, import_db\t\tImport interal database.\r')
console.log('\t--help\t\t\t'+ 'Show help.' + '\t\t\t' + '[boolean]\n')
}