Skip to content

Commit

Permalink
Add VS Code for the Web - Azure walkthrough (#944)
Browse files Browse the repository at this point in the history
* Add walkthrough for /azure

* Fixup

* Update Copilot link

* Update walkthrough

* Update svgs

* Add isWeb

* Cleanup
  • Loading branch information
alexweininger authored Oct 28, 2024
1 parent cbc62dd commit 2577364
Show file tree
Hide file tree
Showing 4 changed files with 475 additions and 0 deletions.
35 changes: 35 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,41 @@
}
],
"walkthroughs": [
{
"id": "vscodeDevWalkthrough",
"when": "isWeb",
"title": "Deploy your application with VS Code for the Web - Azure",
"description": "Your project contains an azure.yaml file, you can provision and deploy your app in a single step with the azd CLI.",
"steps": [
{
"id": "deploy",
"title": "Deploy your template",
"description": "This environment includes the [Azure Developer CLI](https://learn.microsoft.com/en-us/azure/developer/azure-developer-cli/overview), you can use it to run, bug, and deploy Azure applications.Your app has been initialized for you already (``azd init``).\nProvision and deploy your app to Azure (``azd up``) by right clicking your azure.yaml file and selecting up from the context menu (pictured) or by clicking the button below.\n[One-click provision + deploy](command:azure-dev.commands.cli.up)\nTip: You can also run the ``azd up`` command in the [Command Palette](command:workbench.action.quickOpen?%5B%22%3E%20Azure%20Developer%20CLI%20%28azd%29%3A%20up%22%5D) or your terminal to provision and deploy your app.",
"media": {
"svg": "resources/vscode-dev-walkthrough/azdUp.svg",
"altText": "Right click azure.yaml to deploy"
}
},
{
"id": "chatWithCopilot",
"title": "Chat with Copilot",
"description": "Ask Copilot general programming questions with chat. Copilot can also fix problems, scaffold tests, or refactor your code. Type ``/`` while in Copilot to view all available chat commands. Use ``cmd + i`` to open inline chat.\n[Chat with GitHub Copilot](command:workbench.panel.chat.view.copilot.focus)\nTip: You can use [GitHub Copilot for Azure](https://aka.ms/GetGitHubCopilotForAzure) (``@azure``) to view and manage your Azure resources from within GitHub Copilot.",
"media": {
"svg": "resources/vscode-dev-walkthrough/chatWithCopilot.svg",
"altText": "Chat with Copilot"
}
},
{
"id": "azureExtensions",
"title": "Leverage Azure extensions",
"description": "The environment is fully equipped with Azure VS Code extensions. These extensions make Azure development easier to create, run and deploy your applications.\n[View Azure Extensions](command:workbench.view.extension.azure)",
"media": {
"svg": "resources/vscode-dev-walkthrough/azureExtensions.svg",
"altText": "Chat with Copilot"
}
}
]
},
{
"id": "azure-get-started",
"title": "Get Started with Azure in VS Code",
Expand Down
Loading

0 comments on commit 2577364

Please sign in to comment.