MCPcopy Index your code
hub / github.com/CommandCodeAI/BaseAI / displayOutro

Function displayOutro

packages/baseai/src/init/index.ts:223–234  ·  view source on GitHub ↗
({ calledAsCommand }: { calledAsCommand: boolean })

Source from the content-addressed store, hash-verified

221}
222
223function displayOutro({ calledAsCommand }: { calledAsCommand: boolean }): void {
224 if (calledAsCommand) {
225 p.outro('All good. BaseAI setup completed successfully!');
226 p.log.warning(
227 dimItalic(
228 `Make sure to set environment variables like mentioned in the ${cyan(`.env.baseai.example`)} file added to your project root.`
229 )
230 );
231 } else {
232 console.log();
233 }
234}
235
236async function updateGitignore({
237 gitignoreEntry

Callers 1

initFunction · 0.85

Calls 2

dimItalicFunction · 0.90
logMethod · 0.80

Tested by

no test coverage detected