Function
displayOutro
({ calledAsCommand }: { calledAsCommand: boolean })
Source from the content-addressed store, hash-verified
| 221 | } |
| 222 | |
| 223 | function 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 | |
| 236 | async function updateGitignore({ |
| 237 | gitignoreEntry |
Tested by
no test coverage detected