@flowcore/cli-plugin-config
Version:
Flowcore CLI configuration plugin
10 lines (9 loc) • 439 B
JavaScript
import { BaseCommand } from "../../base-command.js";
export default class LoginShow extends BaseCommand {
static description = "Show the configured login url";
static examples = ["<%= config.bin %> <%= command.id %>"];
async run() {
this.ui.logger.info(`Configuration for profile: ${this.ui.colors.green(this.cliConfiguration.getSelectedProfile())}`);
this.cliConfiguration.displayConfigTable(this.ui);
}
}