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
@@ -57,6 +36,12 @@ Complete the following steps in the Azure CLI to create an environment and confi
57
36
az login
58
37
```
59
38
39
+
1. Install the Azure Dev Center extension for the CLI.
40
+
41
+
```azurecli
42
+
az extension add --name devcenter --upgrade
43
+
```
44
+
60
45
1. List all the Azure Deployment Environments projects you have access to:
61
46
62
47
```azurecli
@@ -73,7 +58,7 @@ Complete the following steps in the Azure CLI to create an environment and confi
73
58
74
59
```azurecli
75
60
az config set defaults.group=<name>
76
-
```
61
+
```
77
62
78
63
1. List the type of environments you can create in a specific project:
79
64
@@ -90,18 +75,18 @@ Complete the following steps in the Azure CLI to create an environment and confi
90
75
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:
91
76
92
77
```azurecli
93
-
az devcenter dev environment create --dev-center-name <devcenter-name>
0 commit comments