Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add VS Code for the Web - Azure walkthrough #944

Merged
merged 8 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading