diff --git a/docs/algokit.md b/docs/algokit.md index 7a81a548..7e2d30e9 100644 --- a/docs/algokit.md +++ b/docs/algokit.md @@ -6,9 +6,10 @@ The Algorand AlgoKit CLI is the one-stop shop tool for developers building on th For details on how to use individual features see the following -- [Bootstrap](./features/bootstrap.md) - Bootstrap AlgoKit project dependencies +- [Bootstrap](./features/project/bootstrap.md) - Bootstrap AlgoKit project dependencies +- [Compile](./features/compile.md) - Compile Algorand Python code - [Completions](./features/completions.md) - Install shell completions for AlgoKit -- [Deploy](./features/deploy.md) - Deploy your smart contracts effortlessly to various networks +- [Deploy](./features/project/deploy.md) - Deploy your smart contracts effortlessly to various networks - [Dispenser](./features/dispenser.md) - Fund your TestNet account with ALGOs from the AlgoKit TestNet Dispenser - [Doctor](./features/doctor.md) - Check AlgoKit installation and dependencies - [Explore](./features/explore.md) - Explore Algorand Blockchains using Dappflow @@ -16,7 +17,8 @@ For details on how to use individual features see the following - [Goal](./features/goal.md) - Run the Algorand goal CLI against the AlgoKit Sandbox - [Init](./features/init.md) - Quickly initialize new projects using official Algorand Templates or community provided templates - [LocalNet](./features/localnet.md) - Manage a locally sandboxed private Algorand network -- [Tasks](./features/tasks.md) - Perform a variety of useful operations on Algorand blockchain +- [Project](./features/project.md) - Manage an AlgoKit project workspace on your file system +- [Tasks](./features/tasks.md) - Perform a variety of useful operations on the Algorand blockchain ## Common AlgoKit CLI options diff --git a/docs/features/project.md b/docs/features/project.md index 587e72a9..b4420b73 100644 --- a/docs/features/project.md +++ b/docs/features/project.md @@ -1,9 +1,11 @@ # AlgoKit Project -`algokit project` is a collection of commands and command groups useful for managing algokit compliant projects. +`algokit project` is a collection of commands and command groups useful for managing algokit compliant [project workspaces](./init.md#workspaces). ## Features - [bootstrap](./project/bootstrap.md) - Bootstrap your project with AlgoKit. -- [deploy](./project/deploy.md) - Deploy your project to Algorand blockchain. +- [deploy](./project/deploy.md) - Deploy your smart contracts effortlessly to various networks. +- [link](./project/link.md) - Powerful feature designed to streamline the integration between `frontend` and `contract` projects +- [list](./project/list.md) - Enumerate all projects within an AlgoKit workspace. - [run](./project/project.md) - Define custom commands and manage their execution via `algokit` cli.