diff --git a/src/frontend/src/content/docs/app-host/container-files.mdx b/src/frontend/src/content/docs/app-host/container-files.mdx index 01f5fb8a9..18d683eaa 100644 --- a/src/frontend/src/content/docs/app-host/container-files.mdx +++ b/src/frontend/src/content/docs/app-host/container-files.mdx @@ -364,7 +364,7 @@ await builder.build().run(); In this example: 1. The `frontend` resource builds inside its container, producing compiled JavaScript, CSS, and HTML. -2. During publish, Aspire copies those files from the frontend container into the `api` container at `./wwwroot`. +2. During publish, Aspire copies those files from the `frontend` container into the `api` container at `./wwwroot`. 3. The resulting `api` container includes both the API code and the frontend static assets, ready to serve the full application. ### Serve a frontend from YARP diff --git a/src/frontend/src/content/docs/app-host/migrate-from-docker-compose.mdx b/src/frontend/src/content/docs/app-host/migrate-from-docker-compose.mdx index 56ebc03d3..7f802b024 100644 --- a/src/frontend/src/content/docs/app-host/migrate-from-docker-compose.mdx +++ b/src/frontend/src/content/docs/app-host/migrate-from-docker-compose.mdx @@ -43,7 +43,7 @@ This section demonstrates practical migration scenarios you'll likely encounter ### Multi-service web application -This example shows a typical three-tier application with frontend, API, and database. +This example shows a typical three-tier application with a frontend, API, and database. **Docker Compose example:** diff --git a/src/frontend/src/content/docs/architecture/overview.mdx b/src/frontend/src/content/docs/architecture/overview.mdx index c3877acf6..45fe84e4b 100644 --- a/src/frontend/src/content/docs/architecture/overview.mdx +++ b/src/frontend/src/content/docs/architecture/overview.mdx @@ -43,14 +43,14 @@ Why is modality important when it comes to the AppHost's execution context? This - Database: PostgreSQL - Cache: Redis - AI service: Ollama or OpenAI -- Back end: ASP.NET Core minimal API -- Front end: React app +- Backend: ASP.NET Core minimal API +- Frontend: React app Depending on the mode, the AppHost might treat these resources differently. For example, in run mode, the AppHost might use a local PostgreSQL database and Redis cache—using containers, while in publish mode, it might generate deployment artifacts for Azure PostgreSQL and Redis Cache. #### Run mode -The default mode is run mode, which is ideal for local development and testing. In this mode, the Aspire AppHost orchestrates your application model, including processes, containers, and cloud emulators, to facilitate fast and iterative development. Resources behave like real runtime entities with lifecycles that mirror production. With a simple F5, the AppHost launches everything in your app model—storage, databases, caches, messaging, jobs, APIs, front ends—all fully configured and ready to debug locally. Let's considering the app model from the previous section—where AppHost would orchestrate the following resources locally: +The default mode is run mode, which is ideal for local development and testing. In this mode, the Aspire AppHost orchestrates your application model, including processes, containers, and cloud emulators, to facilitate fast and iterative development. Resources behave like real runtime entities with lifecycles that mirror production. With a simple F5, the AppHost launches everything in your app model—storage, databases, caches, messaging, jobs, APIs, frontends—all fully configured and ready to debug locally. Let's considering the app model from the previous section—where AppHost would orchestrate the following resources locally: import ThemeImage from '@components/ThemeImage.astro'; diff --git a/src/frontend/src/content/docs/community/contributor-guide.mdx b/src/frontend/src/content/docs/community/contributor-guide.mdx index 24cebd200..2cf1a660a 100644 --- a/src/frontend/src/content/docs/community/contributor-guide.mdx +++ b/src/frontend/src/content/docs/community/contributor-guide.mdx @@ -112,7 +112,7 @@ Before you begin, ensure you have the following installed: pnpm dev ``` - This starts the Vite development server for the front end and provide hot-reload capabilities. + This starts the Vite development server for the frontend and provide hot-reload capabilities. 1. View the site locally diff --git a/src/frontend/src/content/docs/community/thanks.mdx b/src/frontend/src/content/docs/community/thanks.mdx index a04f847b1..d663c2560 100644 --- a/src/frontend/src/content/docs/community/thanks.mdx +++ b/src/frontend/src/content/docs/community/thanks.mdx @@ -880,7 +880,7 @@ Aspire speaks many languages — thanks to these communities.

- The JavaScript runtime that enables Aspire to orchestrate front-end and + The JavaScript runtime that enables Aspire to orchestrate frontend and full-stack JS apps.

The typed superset of JavaScript that powers Aspire's TypeScript AppHost - and front-end tooling. + and frontend tooling.

The fast, disk-space efficient package manager that builds the aspire.dev - front end. + frontend.