Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 30 additions & 110 deletions docs/get-started/build-your-first-aspire-app.md

Large diffs are not rendered by default.

Binary file added docs/get-started/media/aspire-cli-run.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/get-started/media/aspire-dashboard-webfrontend.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/get-started/media/aspire-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions docs/includes/aspire-cli-new-app.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The Aspire CLI can lead you through the choices necessary to create a new Aspire solution, based on one of the Aspire templates. Complete the following steps to create a project for this quickstart:

1. Open a command prompt and navigate to a folder where you want to work. The Aspire CLI will create a new subdirectory and places the entire solution in it.
1. To run the Aspire CLI, execute the following command:

```Aspire
aspire new
```

1. The Aspire CLI presents a list of templates for you to choose from. Select `Starter template` and then press <kbd>Enter</kbd>.

:::image type="content" source="media/aspire-cli-new-select-template.png" lightbox="media/aspire-cli-new-select-template.png" alt-text="A screenshot of the command prompt running the Aspire CLI.":::

1. Enter a name for the new solution, and then press <kbd>Enter</kbd>.
1. Enter a folder for the new solution. The default name is the solution name that you just entered.
1. Select the default version of Aspire, which is the latest version on NuGet. Alternatively you can select the latest daily or stable builds of Aspire.
1. Choose `Yes` to include a Redis Cache integration in the solution.
1. Choose `No` to exclude a test project from the solution. The Aspire CLI creates the new solution.

> [!NOTE]
> You chose not to add a test project to the new solution. You can always add a test project later but it's not needed for this quickstart.
21 changes: 21 additions & 0 deletions docs/includes/aspire-cli-new-app.md~
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The Aspire CLI can lead you through the choices necessary to create a new Aspire solution, based on one of the Aspire templates. Complete the following steps to create a project for this quickstart:

1. Open a command prompt and navigate to a folder where you want to work. The Aspire CLI will create a new subdirectory and places the entire solution in it.
1. To run the Aspire CLI, execute the following command:

```aspire-cli
aspire new
```

1. The Aspire CLI presents a list of templates for you to choose from. Select `Starter template` and then press <kbd>Enter</kbd>.

:::image type="content" source="media/aspire-cli-new-select-template.png" lightbox="media/aspire-cli-new-select-template.png" alt-text="A screenshot of the command prompt running the Aspire CLI.":::

1. Enter a name for the new solution, and then press <kbd>Enter</kbd>.
1. Enter a folder for the new solution. The default name is the solution name that you just entered.
1. Select the default version of Aspire, which is the latest version on NuGet. Alternatively you can select the latest daily or stable builds of Aspire.
1. Choose `Yes` to include a Redis Cache integration in the solution.
1. Choose `No` to exclude a test project from the solution. The Aspire CLI creates the new solution.

> [!NOTE]
> You chose not to add a test project to the new solution. You can always add a test project later but it's not needed for this quickstart.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/includes/media/vscode-create-starter-app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/includes/vscode-file-new.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Visual Studio Code provides Aspire project templates that handle some initial se

:::image type="content" loc-scope="vs-code" source="media/vscode-create-starter-app.png" lightbox="media/vscode-create-starter-app.png" alt-text="A screenshot of the Aspire Starter App template.":::

1. Select a folder for the new project, and the enter a name for it.
1. Select a folder for the new project, and then enter a name for it.
8 changes: 8 additions & 0 deletions docs/zones/zone-pivot-groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ groups:
title: Visual Studio
- id: dotnet-cli
title: .NET CLI
- id: dev-tools
title: Development tools
prompt: Choose your preferred development tools
pivots:
- id: aspire-cli
title: Aspire CLI
- id: vscode
title: Visual Studio Code
- id: resp-host
title: Hosting resource type
prompt: Choose a hosting resource that supports the Redis protocol
Expand Down
Loading