-
Notifications
You must be signed in to change notification settings - Fork 26
azure devops setup project
devonfw-core edited this page Dec 27, 2022
·
3 revisions
-
Sign up into Azure DevOps (just follow the section
Sign up with a personal Microsoft account
). -
Install the Azure CLI.
-
Create an Azure DevOps Personal Access Token (PAT).
There are two ways of creating an Azure DevOps project:
-
Create it manually using the web interface following Microsoft official guide.
-
Create it in an automated way using the provided script, as shown below.
Note
|
Both when done manually and when using the script with -p flag, you will need to choose a process workflow. Learn more about the different options in the official documentation. By default, "Basic" workflow is chosen.
|
The script located at scripts/accounts/azure-devops/create-project.sh
enables you to create a new Azure DevOps project or configure an existing one.
create-project.sh \
-n <name> \
-d <description> \
-o <organization> \
-v <visibility> \
-t <PAT> \
[-w <process workflow>]
-n [Required] Name of the new project.
-d [Required] Description for the new project.
-o [Required] Name of the organization for which the project will be configured.
-v [Required] Visibility. Accepted values: private, public.
-t [Required] PAT token to login Azure DevOps.
-w Process workflow that will be used. Accepted values: basic, agile, scrum, cmmi. Default: basic.
This documentation is licensed under the Creative Commons License (Attribution-NoDerivatives 4.0 International).