You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script uninstalls any existing dev center extension and installs the latest version.
38
-
39
-
**Manual installation**
40
-
41
-
Run the following command in the Azure CLI:
42
-
43
-
```azurecli
44
-
az extension add --source https://fidalgosetup.blob.core.windows.net/cli-extensions/devcenter-0.1.0-py3-none-any.whl
45
-
```
24
+
-[Install the Azure CLI](/cli/azure/install-azure-cli).
46
25
47
26
## Create an environment
48
27
@@ -58,6 +37,12 @@ Complete the following steps in the Azure CLI to create an environment and confi
58
37
az login
59
38
```
60
39
40
+
1. Install the Azure Dev Center extension for the CLI.
41
+
42
+
```azurecli
43
+
az extension add --name devcenter --upgrade
44
+
```
45
+
61
46
1. List all the Azure Deployment Environments projects you have access to:
62
47
63
48
```azurecli
@@ -74,7 +59,7 @@ Complete the following steps in the Azure CLI to create an environment and confi
74
59
75
60
```azurecli
76
61
az config set defaults.group=<name>
77
-
```
62
+
```
78
63
79
64
1. List the type of environments you can create in a specific project:
80
65
@@ -91,18 +76,18 @@ Complete the following steps in the Azure CLI to create an environment and confi
91
76
1. Create an environment by using a *catalog-item* (an infrastructure-as-code template defined in the [manifest.yaml](configure-catalog-item.md#add-a-new-catalog-item) file) from the list of available catalog items:
92
77
93
78
```azurecli
94
-
az devcenter dev environment create --dev-center-name <devcenter-name>
0 commit comments