PromucFlow_constructor/deploy/fat_container/utils/bin/utils.js
geekup-legodevops 8119a74054
feat: Implement fat container for appsmith application (#6678)
Adds a Dockerfile along with accompanying scripts and definitions for building a fat Docker image. This image, when run as a container, will include the server, client, RTS, and necessary vendor services running all within.
2021-09-01 11:02:08 +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')
}