Does azure “az webapp up” run build processes?Azure WebApp - VM LatencyDoes Azure by default do any regional or output caching?Change azure plan locationHow many nodes does a Web App in Azure has?Azure. Adding a certificate from GoDaddy CA to an Azure hosted websiteAzure Linux WebApp - deploy.sh can't install yarn globallyAzure ssl certificate not workingAzure Webapp and SQL Secure networkingAzure WebApp Socket can't connect
Why is consensus so controversial in Britain?
Two films in a tank, only one comes out with a development error – why?
dbcc cleantable batch size explanation
How does quantile regression compare to logistic regression with the variable split at the quantile?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
High voltage LED indicator 40-1000 VDC without additional power supply
How to determine what difficulty is right for the game?
Filter any system log file by date or date range
Why is Minecraft giving an OpenGL error?
Was any UN Security Council vote triple-vetoed?
What is a clear way to write a bar that has an extra beat?
What defenses are there against being summoned by the Gate spell?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
What is the word for reserving something for yourself before others do?
What does "Puller Prush Person" mean?
Do infinite dimensional systems make sense?
Codimension of non-flat locus
Cross compiling for RPi - error while loading shared libraries
What does it mean to describe someone as a butt steak?
Could an aircraft fly or hover using only jets of compressed air?
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Replacing matching entries in one column of a file by another column from a different file
Roll the carpet
What's the point of deactivating Num Lock on login screens?
Does azure “az webapp up” run build processes?
Azure WebApp - VM LatencyDoes Azure by default do any regional or output caching?Change azure plan locationHow many nodes does a Web App in Azure has?Azure. Adding a certificate from GoDaddy CA to an Azure hosted websiteAzure Linux WebApp - deploy.sh can't install yarn globallyAzure ssl certificate not workingAzure Webapp and SQL Secure networkingAzure WebApp Socket can't connect
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Currently I'm writing a Django (python) application running on Microsoft Azure cloud. Azure offers several different ways to deploy your app:
- Zip upload
- Git repository
- Cloud shell using "az webapp up" command
In the documentation, it's mentioned that build processes are or can be configured to run automatically during the deployment (in this case, running pip install -r requirements.txt). However, no mention of this is made regarding the third option.
Can anyone shed some light on this?
azure azure-web-apps
add a comment |
Currently I'm writing a Django (python) application running on Microsoft Azure cloud. Azure offers several different ways to deploy your app:
- Zip upload
- Git repository
- Cloud shell using "az webapp up" command
In the documentation, it's mentioned that build processes are or can be configured to run automatically during the deployment (in this case, running pip install -r requirements.txt). However, no mention of this is made regarding the third option.
Can anyone shed some light on this?
azure azure-web-apps
add a comment |
Currently I'm writing a Django (python) application running on Microsoft Azure cloud. Azure offers several different ways to deploy your app:
- Zip upload
- Git repository
- Cloud shell using "az webapp up" command
In the documentation, it's mentioned that build processes are or can be configured to run automatically during the deployment (in this case, running pip install -r requirements.txt). However, no mention of this is made regarding the third option.
Can anyone shed some light on this?
azure azure-web-apps
Currently I'm writing a Django (python) application running on Microsoft Azure cloud. Azure offers several different ways to deploy your app:
- Zip upload
- Git repository
- Cloud shell using "az webapp up" command
In the documentation, it's mentioned that build processes are or can be configured to run automatically during the deployment (in this case, running pip install -r requirements.txt). However, no mention of this is made regarding the third option.
Can anyone shed some light on this?
azure azure-web-apps
azure azure-web-apps
asked Feb 14 at 9:50
quanoquano
11113
11113
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Since this is listed as an "experimental command" your best bet for documentation is the man page.
$>az webapp up --help
Command
az webapp up : (Preview) Create and deploy existing local code to the web app, by running the
command from the folder where the code is present. Supports running the command in preview mode
using --dryrun parameter. Current supports includes Node, Python,.NET Core, ASP.NET, staticHtml.
Node, Python apps are created as Linux apps. .Net Core, ASP.NET and static HTML apps are created
as Windows apps. If command is run from an empty folder, an empty windows web app is created.
Arguments
--dryrun : Show summary of the create and deploy operation instead of executing it.
--location -l : Location. Values from: `az account list-locations`. You can configure the
default location using `az configure --defaults location=<location>`.
--sku : The pricing tiers, e.g., F1(Free), D1(Shared), B1(Basic Small), B2(Basic
Medium), B3(Basic Large), S1(Standard Small), P1(Premium Small), P1V2(Premium
V2 Small), PC2 (Premium Container Small), PC3 (Premium Container Medium), PC4
(Premium Container Large). Allowed values: B1, B2, B3, D1, F1, FREE, P1, P1V2,
P2, P2V2, P3, P3V2, PC2, PC3, PC4, S1, S2, S3, SHARED.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other 'Resource Id'
arguments should be specified.
--name -n : Name of the web app. You can configure the default using 'az configure
--defaults web=<name>'.
--subscription : Name or ID of subscription. You can configure the default subscription using
`az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml. Default:
json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
Examples
View the details of the app that will be created, without actually running the operation
az webapp up -n MyUniqueAppName --dryrun
Create a web app with the default configuration, by running the command from the folder where
the code to deployed exists.
az webapp up -n MyUniqueAppName
Create a web app in a sepcific region, by running the command from the folder where the code to
deployed exists.
az webapp up -n MyUniqueAppName -l locationName
Deploy new code to an app that was originally created using the same command
az webapp up -n MyUniqueAppName -l locationName
add a comment |
TL:DR run this before deploying az webapp config appsettings set -g MyResourceGroup -n MyUniqueAppName --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
PS C:> az webapp config appsettings set --h
Command
az webapp config appsettings set : Set a web app's settings.
Arguments
--settings : Space-separated appsettings in a format of <name>=<value>.
--slot -s : The name of the slot. Default to the productions slot if not specified.
--slot-settings : Space-separated slot appsettings in a format of <name>=<value>.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other
'Resource Id' arguments should be specified.
--name -n : Name of the webapp. You can configure the default using 'az configure
--defaults web=<name>'.
--resource-group -g : Name of resource group. You can configure the default group using `az
configure --defaults group=<name>`. Default: AvidX-Dv-BIOps-RG.
--subscription : Name or ID of subscription. You can configure the default subscription
using `az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml.
Default: json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
New contributor
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f953893%2fdoes-azure-az-webapp-up-run-build-processes%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since this is listed as an "experimental command" your best bet for documentation is the man page.
$>az webapp up --help
Command
az webapp up : (Preview) Create and deploy existing local code to the web app, by running the
command from the folder where the code is present. Supports running the command in preview mode
using --dryrun parameter. Current supports includes Node, Python,.NET Core, ASP.NET, staticHtml.
Node, Python apps are created as Linux apps. .Net Core, ASP.NET and static HTML apps are created
as Windows apps. If command is run from an empty folder, an empty windows web app is created.
Arguments
--dryrun : Show summary of the create and deploy operation instead of executing it.
--location -l : Location. Values from: `az account list-locations`. You can configure the
default location using `az configure --defaults location=<location>`.
--sku : The pricing tiers, e.g., F1(Free), D1(Shared), B1(Basic Small), B2(Basic
Medium), B3(Basic Large), S1(Standard Small), P1(Premium Small), P1V2(Premium
V2 Small), PC2 (Premium Container Small), PC3 (Premium Container Medium), PC4
(Premium Container Large). Allowed values: B1, B2, B3, D1, F1, FREE, P1, P1V2,
P2, P2V2, P3, P3V2, PC2, PC3, PC4, S1, S2, S3, SHARED.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other 'Resource Id'
arguments should be specified.
--name -n : Name of the web app. You can configure the default using 'az configure
--defaults web=<name>'.
--subscription : Name or ID of subscription. You can configure the default subscription using
`az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml. Default:
json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
Examples
View the details of the app that will be created, without actually running the operation
az webapp up -n MyUniqueAppName --dryrun
Create a web app with the default configuration, by running the command from the folder where
the code to deployed exists.
az webapp up -n MyUniqueAppName
Create a web app in a sepcific region, by running the command from the folder where the code to
deployed exists.
az webapp up -n MyUniqueAppName -l locationName
Deploy new code to an app that was originally created using the same command
az webapp up -n MyUniqueAppName -l locationName
add a comment |
Since this is listed as an "experimental command" your best bet for documentation is the man page.
$>az webapp up --help
Command
az webapp up : (Preview) Create and deploy existing local code to the web app, by running the
command from the folder where the code is present. Supports running the command in preview mode
using --dryrun parameter. Current supports includes Node, Python,.NET Core, ASP.NET, staticHtml.
Node, Python apps are created as Linux apps. .Net Core, ASP.NET and static HTML apps are created
as Windows apps. If command is run from an empty folder, an empty windows web app is created.
Arguments
--dryrun : Show summary of the create and deploy operation instead of executing it.
--location -l : Location. Values from: `az account list-locations`. You can configure the
default location using `az configure --defaults location=<location>`.
--sku : The pricing tiers, e.g., F1(Free), D1(Shared), B1(Basic Small), B2(Basic
Medium), B3(Basic Large), S1(Standard Small), P1(Premium Small), P1V2(Premium
V2 Small), PC2 (Premium Container Small), PC3 (Premium Container Medium), PC4
(Premium Container Large). Allowed values: B1, B2, B3, D1, F1, FREE, P1, P1V2,
P2, P2V2, P3, P3V2, PC2, PC3, PC4, S1, S2, S3, SHARED.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other 'Resource Id'
arguments should be specified.
--name -n : Name of the web app. You can configure the default using 'az configure
--defaults web=<name>'.
--subscription : Name or ID of subscription. You can configure the default subscription using
`az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml. Default:
json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
Examples
View the details of the app that will be created, without actually running the operation
az webapp up -n MyUniqueAppName --dryrun
Create a web app with the default configuration, by running the command from the folder where
the code to deployed exists.
az webapp up -n MyUniqueAppName
Create a web app in a sepcific region, by running the command from the folder where the code to
deployed exists.
az webapp up -n MyUniqueAppName -l locationName
Deploy new code to an app that was originally created using the same command
az webapp up -n MyUniqueAppName -l locationName
add a comment |
Since this is listed as an "experimental command" your best bet for documentation is the man page.
$>az webapp up --help
Command
az webapp up : (Preview) Create and deploy existing local code to the web app, by running the
command from the folder where the code is present. Supports running the command in preview mode
using --dryrun parameter. Current supports includes Node, Python,.NET Core, ASP.NET, staticHtml.
Node, Python apps are created as Linux apps. .Net Core, ASP.NET and static HTML apps are created
as Windows apps. If command is run from an empty folder, an empty windows web app is created.
Arguments
--dryrun : Show summary of the create and deploy operation instead of executing it.
--location -l : Location. Values from: `az account list-locations`. You can configure the
default location using `az configure --defaults location=<location>`.
--sku : The pricing tiers, e.g., F1(Free), D1(Shared), B1(Basic Small), B2(Basic
Medium), B3(Basic Large), S1(Standard Small), P1(Premium Small), P1V2(Premium
V2 Small), PC2 (Premium Container Small), PC3 (Premium Container Medium), PC4
(Premium Container Large). Allowed values: B1, B2, B3, D1, F1, FREE, P1, P1V2,
P2, P2V2, P3, P3V2, PC2, PC3, PC4, S1, S2, S3, SHARED.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other 'Resource Id'
arguments should be specified.
--name -n : Name of the web app. You can configure the default using 'az configure
--defaults web=<name>'.
--subscription : Name or ID of subscription. You can configure the default subscription using
`az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml. Default:
json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
Examples
View the details of the app that will be created, without actually running the operation
az webapp up -n MyUniqueAppName --dryrun
Create a web app with the default configuration, by running the command from the folder where
the code to deployed exists.
az webapp up -n MyUniqueAppName
Create a web app in a sepcific region, by running the command from the folder where the code to
deployed exists.
az webapp up -n MyUniqueAppName -l locationName
Deploy new code to an app that was originally created using the same command
az webapp up -n MyUniqueAppName -l locationName
Since this is listed as an "experimental command" your best bet for documentation is the man page.
$>az webapp up --help
Command
az webapp up : (Preview) Create and deploy existing local code to the web app, by running the
command from the folder where the code is present. Supports running the command in preview mode
using --dryrun parameter. Current supports includes Node, Python,.NET Core, ASP.NET, staticHtml.
Node, Python apps are created as Linux apps. .Net Core, ASP.NET and static HTML apps are created
as Windows apps. If command is run from an empty folder, an empty windows web app is created.
Arguments
--dryrun : Show summary of the create and deploy operation instead of executing it.
--location -l : Location. Values from: `az account list-locations`. You can configure the
default location using `az configure --defaults location=<location>`.
--sku : The pricing tiers, e.g., F1(Free), D1(Shared), B1(Basic Small), B2(Basic
Medium), B3(Basic Large), S1(Standard Small), P1(Premium Small), P1V2(Premium
V2 Small), PC2 (Premium Container Small), PC3 (Premium Container Medium), PC4
(Premium Container Large). Allowed values: B1, B2, B3, D1, F1, FREE, P1, P1V2,
P2, P2V2, P3, P3V2, PC2, PC3, PC4, S1, S2, S3, SHARED.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other 'Resource Id'
arguments should be specified.
--name -n : Name of the web app. You can configure the default using 'az configure
--defaults web=<name>'.
--subscription : Name or ID of subscription. You can configure the default subscription using
`az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml. Default:
json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
Examples
View the details of the app that will be created, without actually running the operation
az webapp up -n MyUniqueAppName --dryrun
Create a web app with the default configuration, by running the command from the folder where
the code to deployed exists.
az webapp up -n MyUniqueAppName
Create a web app in a sepcific region, by running the command from the folder where the code to
deployed exists.
az webapp up -n MyUniqueAppName -l locationName
Deploy new code to an app that was originally created using the same command
az webapp up -n MyUniqueAppName -l locationName
answered Feb 14 at 14:31
Ken W MSFTKen W MSFT
3365
3365
add a comment |
add a comment |
TL:DR run this before deploying az webapp config appsettings set -g MyResourceGroup -n MyUniqueAppName --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
PS C:> az webapp config appsettings set --h
Command
az webapp config appsettings set : Set a web app's settings.
Arguments
--settings : Space-separated appsettings in a format of <name>=<value>.
--slot -s : The name of the slot. Default to the productions slot if not specified.
--slot-settings : Space-separated slot appsettings in a format of <name>=<value>.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other
'Resource Id' arguments should be specified.
--name -n : Name of the webapp. You can configure the default using 'az configure
--defaults web=<name>'.
--resource-group -g : Name of resource group. You can configure the default group using `az
configure --defaults group=<name>`. Default: AvidX-Dv-BIOps-RG.
--subscription : Name or ID of subscription. You can configure the default subscription
using `az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml.
Default: json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
New contributor
add a comment |
TL:DR run this before deploying az webapp config appsettings set -g MyResourceGroup -n MyUniqueAppName --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
PS C:> az webapp config appsettings set --h
Command
az webapp config appsettings set : Set a web app's settings.
Arguments
--settings : Space-separated appsettings in a format of <name>=<value>.
--slot -s : The name of the slot. Default to the productions slot if not specified.
--slot-settings : Space-separated slot appsettings in a format of <name>=<value>.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other
'Resource Id' arguments should be specified.
--name -n : Name of the webapp. You can configure the default using 'az configure
--defaults web=<name>'.
--resource-group -g : Name of resource group. You can configure the default group using `az
configure --defaults group=<name>`. Default: AvidX-Dv-BIOps-RG.
--subscription : Name or ID of subscription. You can configure the default subscription
using `az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml.
Default: json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
New contributor
add a comment |
TL:DR run this before deploying az webapp config appsettings set -g MyResourceGroup -n MyUniqueAppName --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
PS C:> az webapp config appsettings set --h
Command
az webapp config appsettings set : Set a web app's settings.
Arguments
--settings : Space-separated appsettings in a format of <name>=<value>.
--slot -s : The name of the slot. Default to the productions slot if not specified.
--slot-settings : Space-separated slot appsettings in a format of <name>=<value>.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other
'Resource Id' arguments should be specified.
--name -n : Name of the webapp. You can configure the default using 'az configure
--defaults web=<name>'.
--resource-group -g : Name of resource group. You can configure the default group using `az
configure --defaults group=<name>`. Default: AvidX-Dv-BIOps-RG.
--subscription : Name or ID of subscription. You can configure the default subscription
using `az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml.
Default: json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
New contributor
TL:DR run this before deploying az webapp config appsettings set -g MyResourceGroup -n MyUniqueAppName --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
PS C:> az webapp config appsettings set --h
Command
az webapp config appsettings set : Set a web app's settings.
Arguments
--settings : Space-separated appsettings in a format of <name>=<value>.
--slot -s : The name of the slot. Default to the productions slot if not specified.
--slot-settings : Space-separated slot appsettings in a format of <name>=<value>.
Resource Id Arguments
--ids : One or more resource IDs (space-delimited). If provided, no other
'Resource Id' arguments should be specified.
--name -n : Name of the webapp. You can configure the default using 'az configure
--defaults web=<name>'.
--resource-group -g : Name of resource group. You can configure the default group using `az
configure --defaults group=<name>`. Default: AvidX-Dv-BIOps-RG.
--subscription : Name or ID of subscription. You can configure the default subscription
using `az account set -s NAME_OR_ID`.
Global Arguments
--debug : Increase logging verbosity to show all debug logs.
--help -h : Show this help message and exit.
--output -o : Output format. Allowed values: json, jsonc, none, table, tsv, yaml.
Default: json.
--query : JMESPath query string. See http://jmespath.org/ for more information and
examples.
--verbose : Increase logging verbosity. Use --debug for full debug logs.
New contributor
New contributor
answered Apr 2 at 20:39
GuestGuest
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f953893%2fdoes-azure-az-webapp-up-run-build-processes%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown