* Returns the welcome text displayed in help output.
()
| 865 | * Returns the welcome text displayed in help output. |
| 866 | */ |
| 867 | function getWelcomeText(): string { |
| 868 | return `${chalk.bold.cyan('Deepnote CLI')} - Run Deepnote projects from the command line |
| 869 | |
| 870 | ${chalk.dim('Run .deepnote files locally or on Deepnote Cloud for data science workflows,')} |
| 871 | ${chalk.dim('automation, CI/CD pipelines, and interactive development.')} |
| 872 | |
| 873 | ${chalk.dim('Documentation:')} ${chalk.underline('https://deepnote.com/docs/getting-started')} |
| 874 | ${chalk.dim('Repository:')} ${chalk.underline('https://github.com/deepnote/deepnote')}` |
| 875 | } |
| 876 | |
| 877 | /** |
| 878 | * Parses command line arguments and runs the CLI. |