Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
de733c4
Add WithBun() documentation to JavaScript integration page (#289)
Copilot Jan 23, 2026
9d18920
Add documentation for deployment slot support in Azure App Service (#…
Copilot Jan 23, 2026
c3f5b3e
Add Azure integrations documentation and CLI command references
IEvangelist Jan 25, 2026
249c76c
Remove run_git_commands.ps1 script and associated documentation for C…
IEvangelist Jan 25, 2026
0413348
Remove obsolete aspire-doctor documentation as it is covered by PR #270
IEvangelist Jan 26, 2026
b266088
Update VSCode settings for Prettier and enhance troubleshooting docum…
IEvangelist Jan 26, 2026
1662f10
Add new diagnostic topic for container shell execution
IEvangelist Jan 26, 2026
3f04209
Add new diagnostic topics for .NET tool and extensions
IEvangelist Jan 26, 2026
7e0e16c
Update ASPIRE008 diagnostic page for GenerateAssemblyInfo requirement…
Copilot Jan 26, 2026
00d9518
Add note about search functionality during local development in contr…
IEvangelist Jan 26, 2026
b375fd9
Add polyglot AppHost documentation for TypeScript, Python, Go, Rust, …
sebastienros Jan 26, 2026
a4be323
Add translation guide and related assets for aspire.dev
IEvangelist Jan 27, 2026
e96ef72
feat: enhance footer with preferences and social icons
IEvangelist Jan 27, 2026
8ba555b
fix: update package manager version to pnpm@10.28.2
IEvangelist Jan 27, 2026
f639a78
Refactor Head.astro component and update CSS styles
IEvangelist Jan 27, 2026
a2ebd0f
chore: update package overrides for seroval and lodash-es in package.…
IEvangelist Jan 27, 2026
5f49f0a
fix: update links and references in translation guide and configurati…
IEvangelist Jan 27, 2026
15f1476
fix: add border to cookie consent button and remove button transform …
IEvangelist Jan 27, 2026
4287dee
fix: reduce icon sizes in IntegrationCard component for better layout
IEvangelist Jan 27, 2026
60dddca
fix: update cookies.svg icon design and adjust FooterSocials componen…
IEvangelist Jan 27, 2026
08af45d
fix: update project name in deployment guide from AspireApp to Aspire…
IEvangelist Jan 28, 2026
7074324
feat: add Aspire 13.2 release notes and update sidebar links for new …
IEvangelist Jan 28, 2026
26e3dc0
fix: update code block syntax for Azure CLI commands in deployment guide
IEvangelist Jan 28, 2026
345b58e
feat: add header link styles and hover effects for improved navigation
IEvangelist Jan 29, 2026
31104f4
Document .NET tool support for Aspire 13.2 (#310)
Copilot Jan 29, 2026
bd72d05
feat: update compiler warning documentation for ASPIREDOTNETTOOL and …
IEvangelist Jan 29, 2026
9dd9b33
fix: remove .NET specific content
IEvangelist Jan 29, 2026
f130d8b
chore: filter NuGet descriptions, ensuring we correctly handle .NET A…
IEvangelist Jan 29, 2026
0943690
Initial plan
Copilot Jan 29, 2026
f15a603
Update eventing documentation to use new helper methods
Copilot Jan 29, 2026
6c81c49
Address review feedback: remove deprecated event patterns and simplif…
Copilot Jan 30, 2026
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ dist/
.astro/
.cache/

.netlify/

# Logs
npm-debug.log*
yarn-debug.log*
Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"recommendations": [
"astro-build.astro-vscode",
"unifiedjs.vscode-mdx",
"prettier.prettier-vscode"
"esbenp.prettier-vscode"
],
"unwantedRecommendations": []
}
16 changes: 8 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"prettier.documentSelectors": ["**/*.astro"],
"[astro]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[mdx]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Thank you for your interest in contributing to the aspire.dev! This guide will h

Please see the full [Contributor guide](https://aspire.dev/community/contributor-guide/) for detailed instructions on how to contribute to aspire.dev, including guidelines for submitting issues, making pull requests, and coding standards.

## Help translate the docs

We welcome translation contributions! Please see our [Translation guide](https://aspire.dev/community/translation-guide/) to learn how to help translate aspire.dev into other languages. You can check the [translation status dashboard](https://localization.aspire.dev) to see what needs to be translated or updated.

## 🏗️ Project structure

```text
Expand Down
5 changes: 3 additions & 2 deletions src/frontend/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default defineConfig({
locales,
logo: {
src: './src/assets/aspire-logo-32.svg',
replacesTitle: true,
replacesTitle: false,
},
editLink: {
baseUrl: 'https://github.com/microsoft/aspire.dev/edit/main/src/frontend/',
Expand Down Expand Up @@ -82,7 +82,7 @@ export default defineConfig({
claude: {
label: 'Open in Claude',
href: 'https://claude.ai/new?q=',
}
},
},
},
}),
Expand Down Expand Up @@ -165,6 +165,7 @@ export default defineConfig({
showCaptions: true,
}),
starlightKbd({
globalPicker: false, // We manually place the picker in the footer preferences
types: [
{ id: 'mac', label: 'macOS', detector: 'apple' },
{ id: 'windows', label: 'Windows', detector: 'windows', default: true },
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/config/head.attrs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const headAttrs: HeadAttr[] = [
attrs: {
name: 'twitter:description',
content:
'Aspire (formerly .NET Aspire) streamlines your development workflow with code-first control, modularity, and observability.',
'Aspire streamlines your development workflow with code-first control, modularity, and observability.',
},
},
{ tag: 'meta', attrs: { name: 'twitter:image', content: 'https://aspire.dev/og-image.png' } },
Expand Down
23 changes: 23 additions & 0 deletions src/frontend/config/sidebar/community.topics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,29 @@ export const communityTopics: StarlightSidebarTopicsUserConfig = {
},
slug: 'community/contributor-guide',
},
{
label: 'Translation guide',
translations: {
da: 'Oversættelsesvejledning',
de: 'Übersetzungsleitfaden',
en: 'Translation guide',
es: 'Guía de traducción',
fr: 'Guide de traduction',
hi: 'अनुवाद गाइड',
id: 'Panduan terjemahan',
it: 'Guida alla traduzione',
ja: '翻訳ガイド',
ko: '번역 가이드',
pt: 'Guia de tradução',
'pt-BR': 'Guia de tradução',
'pt-PT': 'Guia de tradução',
ru: 'Руководство по переводу',
tr: 'Çeviri kılavuzu',
uk: 'Посібник з перекладу',
'zh-CN': '翻译指南',
},
slug: 'community/translation-guide',
},
],
},
{
Expand Down
17 changes: 17 additions & 0 deletions src/frontend/config/sidebar/diagnostic.topics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export const diagnosticTopics: StarlightSidebarTopicsUserConfig = {
{ label: 'Overview', link: '/diagnostics/overview' },
{
label: 'Warnings',
collapsed: true,
items: [
{ label: 'ASPIRE001', link: '/diagnostics/aspire001' },
{ label: 'ASPIRE002', link: '/diagnostics/aspire002' },
Expand All @@ -47,10 +48,22 @@ export const diagnosticTopics: StarlightSidebarTopicsUserConfig = {
label: 'ASPIRECONTAINERRUNTIME001',
link: '/diagnostics/aspirecontainerruntime001',
},
{
label: 'ASPIRECONTAINERSHELLEXECUTION001',
link: '/diagnostics/aspirecontainershellexecution001',
},
{
label: 'ASPIREDOCKERFILEBUILDER001',
link: '/diagnostics/aspiredockerfilebuilder001',
},
{
label: 'ASPIREDOTNETTOOL',
link: '/diagnostics/aspiredotnettool',
},
{
label: 'ASPIREEXTENSION001',
link: '/diagnostics/aspireextension001',
},
{
label: 'ASPIREFILESYSTEM001',
link: '/diagnostics/aspirefilesystem001',
Expand All @@ -67,6 +80,10 @@ export const diagnosticTopics: StarlightSidebarTopicsUserConfig = {
label: 'ASPIREPROBES001',
link: '/diagnostics/aspireprobes001',
},
{
label: 'ASPIREPOSTGRES001',
link: '/diagnostics/aspirepostgres001',
},
{
label: 'ASPIREUSERSECRETS001',
link: '/diagnostics/aspireusersecrets001',
Expand Down
Loading