Skip to content

Commit

Permalink
Adding Azure CLI install
Browse files Browse the repository at this point in the history
  • Loading branch information
Grant-Archibald-MS committed Dec 12, 2024
1 parent 5101905 commit 924ef7a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
21 changes: 21 additions & 0 deletions context/get-started-now.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ To get started, you'll need the following components:
2. **PowerShell**: Ensure you have PowerShell installed on your machine.
3. **Power Platform Command Line Tools**: Install the Power Platform Command Line tools to interact with your Power Platform environment.
4. **.NET 8.0 SDK**: Download and install the .NET 8.0 SDK to build the code.
5. **Azure CLI**: Install the Azure CLI

This can seem daunting but the following steps will help you with this process assuming you are using Microsoft Windows as your local operating system.

Expand Down Expand Up @@ -97,6 +98,26 @@ pac -v

3. Close and reopen your terminal to ensure the new components are in the system path.

## Azure Command Line Interface

1. You can install the Azure Command Line Interface (CLI) using winget

```pwsh
winget install -e --id Microsoft.AzureCLI
```

2. **Verification**: Verify the installation by running:

```pswh
az -version
```

3. Login to the Azure cli with user account account access to the dataverse

```pwsh
az login --allow-no-subscriptions
```

## Getting Started

Have the prerequisites installed and verified? If so lets looks at some samples to get started. For each sample reference the README.md for more information.
Expand Down
3 changes: 3 additions & 0 deletions learning/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ This module explains the following concepts:

## Prerequisites

Using guide [Get Started Now](../context/get-started-now.md) ensure teh following pre-requisites are installed and verified

- Installed version of .NET SDK 8.0
- Visual Studio Code
- PowerShell Core
- Power Platform CLI
- Git Client
- Azure CLI

> NOTE: Unless stated otherwise to use of the learning module assumed that you are using the `integration` branch. If you are new to feature branched you can read [Understanding Feature Branches](../context/understanding-feature-branches.md).
Expand Down
1 change: 1 addition & 0 deletions site/assets/js/technical-learning.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"isRequired": true,
"choices": [
"Downloading and installing the .NET SDK",
"Installing Azure Command Line Tools",
"Installing Power Platform Command Line Tools",
"Using Visual Studio Code to author and edit tests"
]
Expand Down

0 comments on commit 924ef7a

Please sign in to comment.