You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**`aspire deploy`** - Executes deployment by resolving parameters and applying changes to the target environment
@@ -19,7 +19,7 @@ The BookStore application uses Aspire to orchestrate:
19
19
20
20
### General Requirements
21
21
22
-
-**.NET 10 SDK** or later (with .NET Aspire workload)
22
+
-**.NET 10 SDK** or later (with Aspire workload)
23
23
-**Docker Desktop** or Podman (OCI-compliant container runtime)
24
24
-**Aspire CLI** (for publishing and deployment)
25
25
@@ -65,7 +65,7 @@ kubectl cluster-info
65
65
66
66
## Deployment to Azure Container Apps
67
67
68
-
Azure Container Apps (ACA) is the recommended hosting environment for .NET Aspire applications, providing a fully managed, serverless platform for containerized microservices.
68
+
Azure Container Apps (ACA) is the recommended hosting environment for Aspire applications, providing a fully managed, serverless platform for containerized microservices.
Copy file name to clipboardExpand all lines: docs/aspire-guide.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# .NET Aspire Orchestration Guide
1
+
# Aspire Orchestration Guide
2
2
3
-
This guide explains how the BookStore solution uses **.NET Aspire** to orchestrate distributed services, manage local development resources, and simplify cloud-native application composition.
3
+
This guide explains how the BookStore solution uses **Aspire** to orchestrate distributed services, manage local development resources, and simplify cloud-native application composition.
4
4
5
5
## Overview
6
6
@@ -9,7 +9,7 @@ The BookStore solution is built as a distributed system composed of:
9
9
2.**Web Frontend**: Blazor interactive UI
10
10
3.**Infrastructure**: PostgreSQL, Redis, and Azure Blob Storage
11
11
12
-
.NET Aspire serves as the glue that binds these components together, handling:
12
+
Aspire serves as the glue that binds these components together, handling:
13
13
-**Service Discovery**: Automatically injecting connection strings and service URLs.
14
14
-**Resource Management**: Spinning up containers for databases and emulators during development.
15
15
-**Observability**: Providing a unified dashboard for logs, traces, and metrics.
Copy file name to clipboardExpand all lines: docs/caching-guide.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# Caching Guide
2
2
3
-
This guide explains how to configure and use caching in the BookStore API, specifically focusing on the hybrid caching strategy integrated with .NET Aspire and localization.
3
+
This guide explains how to configure and use caching in the BookStore API, specifically focusing on the hybrid caching strategy integrated with Aspire and localization.
4
4
5
5
## Overview
6
6
7
-
The BookStore API uses **Hybrid Caching** (`HybridCache`), enriched by **.NET Aspire** for seamless distributed cache orchestration.
7
+
The BookStore API uses **Hybrid Caching** (`HybridCache`), enriched by **Aspire** for seamless distributed cache orchestration.
8
8
9
9
**Components:**
10
10
-**L1 Cache (In-Memory)**: Local, fast access.
@@ -16,7 +16,7 @@ The BookStore API uses **Hybrid Caching** (`HybridCache`), enriched by **.NET As
16
16
17
17
### Aspire Orchestration
18
18
19
-
The caching infrastructure is automatically wired up by .NET Aspire.
19
+
The caching infrastructure is automatically wired up by Aspire.
0 commit comments