From 5291c72636fc19312136ec5ad6aa76f31756b0d5 Mon Sep 17 00:00:00 2001 From: Chase Fleming <1666730+chasefleming@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:45:57 -0700 Subject: [PATCH 1/3] Add `flow init` mention on CLI index --- docs/build/tools/flow-cli/index.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/build/tools/flow-cli/index.md b/docs/build/tools/flow-cli/index.md index da382a0170..ca807b32d6 100644 --- a/docs/build/tools/flow-cli/index.md +++ b/docs/build/tools/flow-cli/index.md @@ -27,4 +27,12 @@ macOS, Linux, and Windows. ## Create Your First Project -To get started with creating your first Flow project and to learn more about how to use the Flow CLI commands, please refer to the [Commands documentation](./commands.md). These commands simplify the setup and development process, allowing you to focus on building your application without worrying about the underlying configurations. +Create a new Flow project: + +```zsh +flow init +``` + +The `flow init` command provides an interactive setup experience where you can select from various project scaffolds. These scaffolds help you get started quickly by providing pre-configured projects for common use cases, such as basic Cadence projects, projects with specific contract dependencies, or specialized templates for different types of applications. + +To learn more about Flow CLI commands and how to use them, please refer to the [Commands documentation](./commands.md). From 3ad44a6783d6515b055b9ae1379e09b5d3fe8798 Mon Sep 17 00:00:00 2001 From: Chase Fleming <1666730+chasefleming@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:48:43 -0700 Subject: [PATCH 2/3] Update language --- docs/build/tools/flow-cli/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/tools/flow-cli/index.md b/docs/build/tools/flow-cli/index.md index ca807b32d6..c1f749a5e3 100644 --- a/docs/build/tools/flow-cli/index.md +++ b/docs/build/tools/flow-cli/index.md @@ -33,6 +33,6 @@ Create a new Flow project: flow init ``` -The `flow init` command provides an interactive setup experience where you can select from various project scaffolds. These scaffolds help you get started quickly by providing pre-configured projects for common use cases, such as basic Cadence projects, projects with specific contract dependencies, or specialized templates for different types of applications. +The `flow init` command gets you up and running with a new project setup in one command. Choose from scaffolds for scheduled transactions, DeFi actions, stablecoins, and more, or start with a basic Cadence project. To learn more about Flow CLI commands and how to use them, please refer to the [Commands documentation](./commands.md). From b89c46b978e9483e1fda7900a50cf475c0d84ed0 Mon Sep 17 00:00:00 2001 From: Chase Fleming <1666730+chasefleming@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:50:35 -0700 Subject: [PATCH 3/3] Update --- docs/build/tools/flow-cli/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/tools/flow-cli/index.md b/docs/build/tools/flow-cli/index.md index c1f749a5e3..e8c0fd8d05 100644 --- a/docs/build/tools/flow-cli/index.md +++ b/docs/build/tools/flow-cli/index.md @@ -27,7 +27,7 @@ macOS, Linux, and Windows. ## Create Your First Project -Create a new Flow project: +Get started by running: ```zsh flow init