[docs] Document Python starter template migration to TypeScript AppHost (aspire-py-starter)#823
Merged
IEvangelist merged 2 commits intorelease/13.3from May 5, 2026
Conversation
The aspire-py-starter template was migrated from dotnet new (C# AppHost) to the Aspire CLI template system (TypeScript AppHost) in aspire#15574. - Add 13.3 what's-new entry for the Python starter template change - Update aspire-sdk-templates.mdx to reflect TypeScript AppHost and new --use-redis-cache option - Update aspire-new.mdx commands table and add py-starter-specific options Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
sebastienros
approved these changes
May 5, 2026
davidfowl
reviewed
May 5, 2026
…w.mdx Co-authored-by: David Fowler <davidfowl@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Documents changes from microsoft/aspire#15574
PR author:
@davidfowlTargeting:
release/13.3(based on the source PR milestone13.3).Why this PR is needed
PR microsoft/aspire#15574 is a breaking change (labeled as such) that migrates the
aspire-py-startertemplate from thedotnet newtemplate system (C# AppHost) to the Aspire CLI template system (TypeScript AppHost). Users who previously randotnet new aspire-py-starternow need to useaspire new aspire-py-starter. The existing documentation described the old C# AppHost structure, and there was no documentation of the new--use-redis-cacheoption.What was changed
Files modified
src/frontend/src/content/docs/whats-new/aspire-13-3.mdx— Added a new "🐍 Python starter template migrated to TypeScript AppHost" section explaining the breaking change, the new--use-redis-cacheoption, and the migration guidance.src/frontend/src/content/docs/get-started/aspire-sdk-templates.mdx— Updated the "Aspire Starter App with FastAPI and React" description to reflect that it now uses a TypeScript AppHost, lists the actual template files (apphost.ts,app/,frontend/) rather than the old C# project names, mentions--use-redis-cache, and notes the .NET SDK is no longer required.src/frontend/src/content/docs/reference/cli/commands/aspire-new.mdx— Updated theaspire-py-starterentry in the commands table to note it uses a TypeScript AppHost, and added a new "aspire-py-starter options" subsection documenting--use-redis-cache.All three pages were updated (none newly created).