We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3646c0b commit a785a6aCopy full SHA for a785a6a
codeflash/cli_cmds/cmd_init.py
@@ -228,6 +228,18 @@ def collect_setup_info() -> SetupInfo:
228
custom_dir_option = "enter a custom directory…"
229
module_subdir_options = [*valid_module_subdirs, curdir_option, custom_dir_option]
230
231
+ info_panel = Panel(
232
+ Text(
233
+ "📁 Let's identify your Python module directory.\n\n"
234
+ "This is usually the top-level directory containing all your Python source code.\n",
235
+ style="cyan",
236
+ ),
237
+ title="🔍 Module Discovery",
238
+ border_style="bright_blue",
239
+ )
240
+ console.print(info_panel)
241
+ console.print()
242
+
243
questions = [
244
inquirer.List(
245
"module_root",
0 commit comments