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 fa576ce commit 3982251Copy full SHA for 3982251
src/warnet/project.py
@@ -431,6 +431,10 @@ def new_internal(directory: Path, from_init=False):
431
if proj_answers["custom_network"]:
432
click.secho("\nGenerating custom network...", fg="yellow", bold=True)
433
custom_network_path = inquirer_create_network(directory)
434
+ else:
435
+ click.echo(f"No custom network specified, see example network files in {project_path}/networks/")
436
+ click.echo(f"\nDeploy any of these networks by running:")
437
+ click.echo(f" warnet deploy {project_path}/networks/<example-network-name>")
438
439
if custom_network_path:
440
click.echo(
0 commit comments