Skip to content

Commit 060c6e9

Browse files
authored
pull base content,head:wwlpublishsync,into:79c993fc66b71b3f82a9ad2324362d640b80c7add645962ae176a6d234eb05f5-live
2 parents 88e2387 + bc24b3f commit 060c6e9

File tree

13 files changed

+269
-235
lines changed

13 files changed

+269
-235
lines changed

learn-pr/azure-devops/create-a-build-pipeline/includes/5-set-up-environment.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,15 @@ Run a template that sets up your Azure DevOps organization.
3131

3232
1. Once your project is created, go to your Azure DevOps organization in your browser (at `https://dev.azure.com/<your-organization-name>/`) and select the project.
3333

34+
### Fork the repository
35+
36+
If you haven't already, create a fork of the **mslearn-tailspin-spacegame-web** repository.
37+
38+
1. On GitHub, go to the [mslearn-tailspin-spacegame-web](https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web) repository.
39+
40+
1. Select **Fork** at the top-right of the screen.
41+
42+
1. Choose your GitHub account as the **Owner**, then select **Create fork**.
43+
3444
> [!IMPORTANT]
3545
> The [Clean up your Azure DevOps environment](/training/modules/create-a-build-pipeline/9-clean-up-environment?azure-portal=true) unit at the end of this module provides important cleanup steps. Cleaning up helps ensure that you don't run out of free build minutes for Microst-hosted agents ([check your usage](/azure/devops/pipelines/licensing/concurrent-jobs#check-the-parallel-jobs-setting-directly)), or GitHub Codespaces [included usage hours and storage](https://docs.github.com/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces#monthly-included-storage-and-core-hours-for-personal-accounts) ([charges might apply if you exceed the free tier, so check your usage](https://docs.github.com/billing/managing-billing-for-github-codespaces/viewing-your-github-codespaces-usage)). Be sure to do the cleanup steps even if you don't complete this module.

learn-pr/azure-devops/implement-code-workflow/includes/3-set-up-environment.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,38 @@ The modules in this learning path form a progression, where you follow the Tails
1515

1616
### Run the template
1717

18-
Run a template that sets up everything for you in your Azure DevOps organization.
18+
Run a template that sets up your Azure DevOps organization.
1919

20-
> [!div class="nextstepaction"]
21-
> [Run the template](https://azuredevopsdemogenerator.azurewebsites.net/?x-ms-routing-name=self&name=implement-code-workflow&azure-portal=true)
20+
1. [Get and run the ADOGenerator project](https://github.com/microsoft/AzDevOpsDemoGenerator/blob/main/docs/RunApplication.md) in Visual Studio or the IDE of your choice.
2221

23-
To run the template, on the Azure DevOps Demo Generator site, do the following:
22+
1. When prompted to **Enter the template number from the list of templates**, enter **23** for **Implement a code workflow in your build pipeline using Git and GitHub**, then press **Enter**.
2423

25-
1. Select **Sign In** and accept the usage terms.
26-
1. On the **Create New Project** page, select your Azure DevOps organization, then enter a project name, such as *Space Game - web - Workflow*.
27-
1. Select **Yes, I want to fork this repository**, then select **Authorize**. If a window appears, authorize access to your GitHub account.
24+
1. Choose your authentication method. You can [set up and use a Personal Access Token (PAT)](/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate#create-a-pat) or use device login.
2825

29-
> [!IMPORTANT]
30-
> You need to select this option for the template to connect to your GitHub repository. Select it even if you've already forked the *Space Game* website project. The template uses your existing fork.
26+
> [!NOTE]
27+
> If you set up a PAT, If you set up a PAT, make sure to authorize the necessary [scopes](/azure/devops/integrate/get-started/authentication/oauth#scopes). For this module, you can use **Full access**, but in a real-world situation, you should ensure you grant only the necessary scopes.
3128
32-
1. Select **Create Project**.
29+
1. Enter your Azure DevOps organization name, then press **Enter**.
3330

34-
:::image type="content" source="../media/3-create-new-project.png" alt-text="A screenshot of the Azure DevOps Demo Generator showing how to create a new project.":::
31+
1. If prompted, enter your Azure DevOps PAT, then press **Enter**.
3532

36-
It takes a few moments for the template to run.
37-
1. Select **Navigate to project** to go to your project in Azure DevOps.
33+
1. Enter a project name such as *Space Game - web - Workflow*, then press **Enter**.
34+
35+
1. Once your project is created, go to your Azure DevOps organization in your browser (at `https://dev.azure.com/<your-organization-name>/`) and select the project.
3836

3937
> [!IMPORTANT]
4038
> The [Clean up your Azure DevOps environment](/training/modules/implement-code-workflow/9-clean-up-environment?azure-portal=true) page in this module contains important cleanup steps. Cleaning up helps ensure that you don't run out of free build minutes. Be sure to perform the cleanup steps even if you don't complete this module.
4139
40+
## Fork the repository
41+
42+
If you haven't already, fork the **mslearn-tailspin-spacegame-web** repository.
43+
44+
1. On GitHub, go to the [mslearn-tailspin-spacegame-web](https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web) repository.
45+
46+
1. Select **Fork** at the top-right of the screen.
47+
48+
1. Choose your GitHub account as the **Owner**, then select **Create fork**.
49+
4250
[!include[](../../shared/includes/project-visibility.md)]
4351

4452
## Move the work item to Doing

learn-pr/azure-devops/manage-build-dependencies/includes/3-set-up-environment.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,34 @@ The modules in this learning path form a progression, where you follow the Tails
1515

1616
### Run the template
1717

18-
To set up everything for you in your Azure DevOps organization, you'll run a template.
18+
Run a template that sets up your Azure DevOps organization.
1919

20-
> [!div class="nextstepaction"]
21-
> [Run the template](https://azuredevopsdemogenerator.azurewebsites.net/?x-ms-routing-name=self&name=manage-build-dependencies&azure-portal=true)
20+
1. [Get and run the ADOGenerator project](https://github.com/microsoft/AzDevOpsDemoGenerator/blob/main/docs/RunApplication.md) in Visual Studio or the IDE of your choice.
2221

23-
From the Azure DevOps demo generator site, to run the template, perform these steps.
22+
1. When prompted to **Enter the template number from the list of templates**, enter **27** for **Manage build dependencies with Azure Artifacts**, then press **Enter**.
2423

25-
1. Select **Sign In** and accept the usage terms.
26-
1. From the **Create New Project** page, select your Azure DevOps organization, and enter a project name. For example, enter *Space Game - web - Dependencies*.
27-
1. Select **Yes, I want to fork this repository**, then select **Authorize**. If a window appears, authorize access to your GitHub account.
24+
1. Choose your authentication method. You can [set up and use a Personal Access Token (PAT)](/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate#create-a-pat) or use device login.
2825

29-
> [!IMPORTANT]
30-
> You need to select this option for the template to connect to your GitHub repository. Select this option even if you've already forked the _Space Game_ website project. The template uses your existing fork.
26+
> [!NOTE]
27+
> If you set up a PAT, If you set up a PAT, make sure to authorize the necessary [scopes](/azure/devops/integrate/get-started/authentication/oauth#scopes). For this module, you can use **Full access**, but in a real-world situation, you should ensure you grant only the necessary scopes.
3128
32-
1. Select **Create Project**.
29+
1. Enter your Azure DevOps organization name, then press **Enter**.
3330

34-
:::image type="content" source="../media/3-create-new-project.png" alt-text="A screenshot of the Azure DevOps Demo Generator showing how to create a new project.":::
31+
1. If prompted, enter your Azure DevOps PAT, then press **Enter**.
3532

36-
It takes a few moments for the template to run.
37-
1. To go to your project in Azure DevOps, select **Navigate to project** when the project finishes building.
33+
1. Enter a project name such as *Space Game - web - Dependencies*, then press **Enter**.
34+
35+
1. Once your project is created, go to your Azure DevOps organization in your browser (at `https://dev.azure.com/<your-organization-name>/`) and select the project.
36+
37+
### Fork the repository
38+
39+
If you haven't already, create a fork of the **mslearn-tailspin-spacegame-web** repository.
40+
41+
1. On GitHub, go to the [mslearn-tailspin-spacegame-web](https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web) repository.
42+
43+
1. Select **Fork** at the top-right of the screen.
44+
45+
1. Choose your GitHub account as the **Owner**, then select **Create fork**.
3846

3947
> [!IMPORTANT]
4048
> The [Clean up your Azure DevOps environment](/training/modules/manage-build-dependencies/8-clean-up-environment?azure-portal=true) page in this module contains important cleanup steps. Cleaning up helps ensure that you don't run out of free build minutes. Be sure to perform the cleanup steps even if you don't complete this module.

learn-pr/azure-devops/run-quality-tests-build-pipeline/includes/3-set-up-environment.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,34 @@ Here, you'll make sure that your Azure DevOps organization is set up to complete
1313

1414
### Run the template
1515

16-
Run a template that sets up everything for you in your Azure DevOps organization.
16+
Run a template that sets up your Azure DevOps organization.
1717

18-
> [!div class="nextstepaction"]
19-
> [Run the template](https://azuredevopsdemogenerator.azurewebsites.net/?x-ms-routing-name=self&name=run-quality-tests&azure-portal=true)
18+
1. [Get and run the ADOGenerator project](https://github.com/microsoft/AzDevOpsDemoGenerator/blob/main/docs/RunApplication.md) in Visual Studio or the IDE of your choice.
2019

21-
To run the template, on the Azure DevOps Demo Generator site, do the following:
20+
1. When prompted to **Enter the template number from the list of templates**, enter **24** for **Run quality tests in your build pipeline using Azure Pipelines**, then press **Enter**.
2221

23-
1. Select **Sign In** and accept the usage terms.
24-
1. On the **Create New Project** page, select your Azure DevOps organization, and then enter a project name, such as *Space Game - web - Tests*.
25-
1. Select the box next to **Yes, I want to fork this repository**, then select **Authorize**. If a window appears, authorize access to your GitHub account.
22+
1. Choose your authentication method. You can [set up and use a Personal Access Token (PAT)](/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate#create-a-pat) or use device login.
2623

27-
> [!IMPORTANT]
28-
> You need to select this option for the template to connect to your GitHub repository. Select it even if you've already forked the _Space Game_ website project. The template uses your existing fork.
24+
> [!NOTE]
25+
> If you set up a PAT, If you set up a PAT, make sure to authorize the necessary [scopes](/azure/devops/integrate/get-started/authentication/oauth#scopes). For this module, you can use **Full access**, but in a real-world situation, you should ensure you grant only the necessary scopes.
2926
30-
1. Select **Create Project**.
27+
1. Enter your Azure DevOps organization name, then press **Enter**.
3128

32-
:::image type="content" source="../media/3-create-new-project.png" alt-text="A screenshot of the Azure DevOps Demo Generator Create New Project screen with the Create Project button highlighted.":::
29+
1. If prompted, enter your Azure DevOps PAT, then press **Enter**.
3330

34-
It takes a few moments for the template to run.
35-
1. Select **Navigate to project** to go to your project in Azure DevOps.
31+
1. Enter a project name such as *Space Game - web - Tests*, then press **Enter**.
32+
33+
1. Once your project is created, go to your Azure DevOps organization in your browser (at `https://dev.azure.com/<your-organization-name>/`) and select the project.
34+
35+
## Fork the repository
36+
37+
If you haven't already, create a fork of the **mslearn-tailspin-spacegame-web** repository.
38+
39+
1. On GitHub, go to the [mslearn-tailspin-spacegame-web](https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web) repository.
40+
41+
1. Select **Fork** at the top-right of the screen.
42+
43+
1. Choose your GitHub account as the **Owner**, then select **Create fork**.
3644

3745
> [!IMPORTANT]
3846
> The [Clean up your Azure DevOps environment](/training/modules/run-quality-tests-build-pipeline/8-clean-up-environment?azure-portal=true) page in this module contains important cleanup steps. Cleaning up helps ensure that you don't run out of free build minutes. Be sure to perform the cleanup steps even if you don't complete this module.
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
### YamlMime:ModuleUnit
2-
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.introduction
3-
title: Introduction
4-
metadata:
5-
title: Introduction
6-
description: "Introduction"
7-
ms.date: 07/25/2024
8-
author: wwlpublish
9-
ms.author: jamesh
10-
ms.topic: unit
11-
azureSandbox: false
12-
labModal: false
13-
durationInMinutes: 1
14-
content: |
15-
[!include[](includes/1-introduction.md)]
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.introduction
3+
title: Introduction
4+
metadata:
5+
title: Introduction
6+
description: "Introduction"
7+
ms.date: 04/30/2025
8+
author: wwlpublish
9+
ms.author: jamesh
10+
ms.topic: unit
11+
azureSandbox: false
12+
labModal: false
13+
durationInMinutes: 1
14+
content: |
15+
[!include[](includes/1-introduction.md)]
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
### YamlMime:ModuleUnit
2-
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.lake-database
3-
title: Understand lake database concepts
4-
metadata:
5-
title: Understand lake database concepts
6-
description: "Understand lake database concepts"
7-
ms.date: 07/25/2024
8-
author: wwlpublish
9-
ms.author: jamesh
10-
ms.topic: unit
11-
azureSandbox: false
12-
labModal: false
13-
durationInMinutes: 3
14-
content: |
15-
[!include[](includes/2-lake-database.md)]
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.lake-database
3+
title: Understand lake database concepts
4+
metadata:
5+
title: Understand lake database concepts
6+
description: "Understand lake database concepts"
7+
ms.date: 04/30/2025
8+
author: wwlpublish
9+
ms.author: jamesh
10+
ms.topic: unit
11+
azureSandbox: false
12+
labModal: false
13+
durationInMinutes: 3
14+
content: |
15+
[!include[](includes/2-lake-database.md)]
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
### YamlMime:ModuleUnit
2-
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.database-templates
3-
title: Explore database templates
4-
metadata:
5-
title: Explore database templates
6-
description: "Explore database templates"
7-
ms.date: 07/25/2024
8-
author: wwlpublish
9-
ms.author: jamesh
10-
ms.topic: unit
11-
azureSandbox: false
12-
labModal: false
13-
durationInMinutes: 3
14-
content: |
15-
[!include[](includes/3-database-templates.md)]
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.database-templates
3+
title: Explore database templates
4+
metadata:
5+
title: Explore database templates
6+
description: "Explore database templates"
7+
ms.date: 04/30/2025
8+
author: wwlpublish
9+
ms.author: jamesh
10+
ms.topic: unit
11+
azureSandbox: false
12+
labModal: false
13+
durationInMinutes: 3
14+
content: |
15+
[!include[](includes/3-database-templates.md)]
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
### YamlMime:ModuleUnit
2-
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.create-lake-database
3-
title: Create a lake database
4-
metadata:
5-
title: Create a lake database
6-
description: "Create a lake database"
7-
ms.date: 07/25/2024
8-
author: wwlpublish
9-
ms.author: jamesh
10-
ms.topic: unit
11-
azureSandbox: false
12-
labModal: false
13-
durationInMinutes: 3
14-
content: |
15-
[!include[](includes/4-create-lake-database.md)]
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.create-lake-database
3+
title: Create a lake database
4+
metadata:
5+
title: Create a lake database
6+
description: "Create a lake database"
7+
ms.date: 04/30/2025
8+
author: wwlpublish
9+
ms.author: jamesh
10+
ms.topic: unit
11+
azureSandbox: false
12+
labModal: false
13+
durationInMinutes: 3
14+
content: |
15+
[!include[](includes/4-create-lake-database.md)]
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
### YamlMime:ModuleUnit
2-
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.use-lake-database
3-
title: Use a lake database
4-
metadata:
5-
title: Use a lake database
6-
description: "Use a lake database"
7-
ms.date: 07/25/2024
8-
author: wwlpublish
9-
ms.author: jamesh
10-
ms.topic: unit
11-
azureSandbox: false
12-
labModal: false
13-
durationInMinutes: 3
14-
content: |
15-
[!include[](includes/5-use-lake-database.md)]
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.use-lake-database
3+
title: Use a lake database
4+
metadata:
5+
title: Use a lake database
6+
description: "Use a lake database"
7+
ms.date: 04/30/2025
8+
author: wwlpublish
9+
ms.author: jamesh
10+
ms.topic: unit
11+
azureSandbox: false
12+
labModal: false
13+
durationInMinutes: 3
14+
content: |
15+
[!include[](includes/5-use-lake-database.md)]
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
### YamlMime:ModuleUnit
2-
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.exercise-lake-database
3-
title: Exercise - Analyze data in a lake database
4-
metadata:
5-
title: Exercise - Analyze data in a lake database
6-
description: "Exercise - Analyze data in a lake database"
7-
ms.date: 07/25/2024
8-
author: wwlpublish
9-
ms.author: jamesh
10-
ms.topic: unit
11-
azureSandbox: false
12-
labModal: false
13-
durationInMinutes: 45
14-
content: |
15-
[!include[](includes/6-exercise-lake-database.md)]
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.create-metadata-objects-azure-synapse-serverless-sql-pools.exercise-lake-database
3+
title: Exercise - Analyze data in a lake database
4+
metadata:
5+
title: Exercise - Analyze data in a lake database
6+
description: "Exercise - Analyze data in a lake database"
7+
ms.date: 04/30/2025
8+
author: wwlpublish
9+
ms.author: jamesh
10+
ms.topic: unit
11+
azureSandbox: false
12+
labModal: false
13+
durationInMinutes: 45
14+
content: |
15+
[!include[](includes/6-exercise-lake-database.md)]

0 commit comments

Comments
 (0)