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
@@ -79,7 +79,7 @@ az webapp up --sku F1 --name <app-name>
79
79
- Replace `<app_name>` with a name that's unique across all of Azure (*valid characters are `a-z`, `0-9`, and `-`*). A good pattern is to use a combination of your company name and an app identifier.
80
80
- The `--sku F1` argument creates the web app on the Free pricing tier, which incurs a no cost.
81
81
- You can optionally include the argument `--location <location-name>` where `<location_name>` is an available Azure region. You can retrieve a list of allowable regions for your Azure account by running the [`az account list-locations`](/cli/azure/appservice#az_appservice_list_locations) command.
82
-
- The command creates a Linux app for Node.js by default. To create a Windows app instead, use the `--os-type` argument.
82
+
- The command creates a Linux app for Node.js by default. To create a Windows app instead, use the `--os-type` argument.
83
83
- If you see the error, "Could not auto-detect the runtime stack of your app," make sure you're running the commandin the *myExpressApp* directory (See [Troubleshooting auto-detect issues with az webapp up](https://github.com/Azure/app-service-linux-docs/blob/master/AzWebAppUP/runtime_detection.md)).
84
84
85
85
The command may take a few minutes to complete. While running, it provides messages about creating the resource group, the App Service plan, and the app resource, configuring logging, and doing ZIP deployment. It then gives the message, "You can launch the app at http://<app-name>.azurewebsites.net", which is the app's URL on Azure.
@@ -112,54 +112,6 @@ You can launch the app at http://<app-name>.azurewebsites.net
112
112
113
113
[!include [az webapp up command note](../../includes/app-service-web-az-webapp-up-note.md)]
[!INCLUDE [Create app service plan](../../includes/app-service-web-create-app-service-plan-linux.md)]
129
-
130
-
## Create a web app
131
-
132
-
1. In the Cloud Shell, create a web app in the `myAppServicePlan` App Service plan with the [`az webapp create`](/cli/azure/webapp#az-webapp-create) command.
133
-
134
-
In the following example, replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`). The runtime is set to `PHP|7.4`. To see all supported runtimes, run [`az webapp list-runtimes`](/cli/azure/webapp#az-webapp-list-runtimes).
You've created an empty new web app, with git deployment enabled.
158
-
159
-
> [!NOTE]
160
-
> The URL of the Git remote is shown in the `deploymentLocalGitUrl` property, with the format `https://<username>@<app-name>.scm.azurewebsites.net/<app-name>.git`. Save this URL as you need it later.
161
-
>
162
-
163
115
164
116
1. Browse to your newly created web app. Replace _<app-name>_ with your unique app name created in the prior step.
0 commit comments