alwaysai
Version:
The alwaysAI command-line interface (CLI)
19 lines • 788 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const alwayscli_1 = require("@alwaysai/alwayscli");
const app_config_file_1 = require("../../util/app-config-file");
const echo_1 = require("../../util/echo");
const target_config_file_1 = require("../../util/target-config-file");
exports.appShowCliLeaf = alwayscli_1.createLeaf({
name: 'show',
description: "Show this directory's alwaysAI application configuration",
options: {},
action() {
echo_1.echo(app_config_file_1.appConfigFile.describeModels());
echo_1.echo();
echo_1.echo(app_config_file_1.appConfigFile.describeScripts());
echo_1.echo();
echo_1.echo(target_config_file_1.targetConfigFile.describe());
},
});
//# sourceMappingURL=show.js.map