UNPKG

quallaa-cli

Version:

Sets up core infrastructure services for AI-assisted development

42 lines (37 loc) 2.56 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.displayBanner = displayBanner; exports.displayWelcome = displayWelcome; const chalk_1 = __importDefault(require("chalk")); function displayBanner() { const banner = ` ${chalk_1.default.blue(' █████╗ ██╗ ██╗ █████╗ ██╗ ██╗ █████╗ █████╗')} ${chalk_1.default.blue(' ██╔══██╗ ██║ ██║ ██╔══██╗ ██║ ██║ ██╔══██╗ ██╔══██╗')} ${chalk_1.default.blue(' ██║ ██║ ██║ ██║ ███████║ ██║ ██║ ███████║ ███████║')} ${chalk_1.default.blue(' ██║▄▄██║ ██║ ██║ ██╔══██║ ██║ ██║ ██╔══██║ ██╔══██║')} ${chalk_1.default.blue(' ╚██████║ ╚██████╔╝ ██║ ██║ ███████╗███████╗██║ ██║ ██║ ██║')} ${chalk_1.default.blue(' ╚══▀▀═╝ ╚═════╝ ╚═╝ ╚═╝ ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝')} ${chalk_1.default.bold('Quallaa CLI')} ${chalk_1.default.gray('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━')} ${chalk_1.default.gray('Sets up core infrastructure services for AI-assisted development')} `; console.log(banner); } function displayWelcome() { displayBanner(); console.log(` ${chalk_1.default.bold('Welcome to Quallaa CLI!')} ${chalk_1.default.gray('This tool helps you set up core infrastructure services for your development projects.')} ${chalk_1.default.yellow('Available services:')}${chalk_1.default.green('Vercel')} - Hosting and deployment • ${chalk_1.default.green('Supabase')} - Database and authentication • ${chalk_1.default.green('GitHub')} - Version control • ${chalk_1.default.green('Resend')} - Email infrastructure • ${chalk_1.default.green('Typesense')} - Search (optional) ${chalk_1.default.gray('Choose your role to get customized setup guidance and AI context files.')} `); } //# sourceMappingURL=banner.js.map