The process of making the raw code (Visual Studio Solution) to Azure Cloud runnable instance.
Questions tagged [azure-deployment]
579 questions
4
votes
1 answer
Azure flask scriptProcessor could not be found in application configuration
I am trying to deploy Python Flask application in the Azure web app. I had create web app(Flask) and published my code. After publish, I am getting below error from the site.
The page cannot be displayed because an internal server error has
…

kabilan Mohanasundaram
- 399
- 4
- 16
4
votes
1 answer
Azure git deployment failure
I have a couple of azure web apps deployed from bitbucket.
It was all working fine and never had any problems at all.
Since my last commit the azure deployment now fails with the following error:
Command: deploy.cmd
Installing Kudu…

Alessandro Di Lello
- 1,181
- 1
- 9
- 22
4
votes
1 answer
ENOTSUP using Grunt
I'm using Grunt to minify and concatenate files for an AngularJS web application. Our source is on a file share and I'm connecting to it via a mapped drive. Whenever Grunt runs over my source directory, I get an error on one of my concat tasks. …

Lee Duckworth
- 240
- 4
- 15
4
votes
1 answer
Virto Commerce Cryptographic Exception in azure
After the struggle to successfully deploy virto commerce to Azure, and after activating the email confirmation for new users, I keep running into a Cryptographic Exception:
The data protection operation was unsuccessful. This may have been caused by…

Joel Brito
- 339
- 3
- 9
4
votes
1 answer
Calling Set-AzureServiceDiagnosticsExtension with Role parameter fails
I'm trying to set Azure diagnostics on a deployed cloud service using the Azure Powershell cmdlets and the Set-AzureServiceDiagnosticsExtension command:
Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext…

Evan
- 5,925
- 6
- 33
- 35
3
votes
1 answer
Failed to deploy web package to App Service. Service Unavailable (CODE: 503)
I am trying to deploy my app to an Azure app service via Azure Dev Ops pipelines. The app builds okay, but during the deploy phase, I get the following error.
2023-01-12T19:23:13.1683884Z ##[error]Failed to deploy web package to App…

Dave
- 3,676
- 4
- 28
- 39
3
votes
1 answer
azure bicep template with module doing a union of web slot config appsettings
I am trying to get a list of my current sites/slot app config and then combining it with a union so I don't overwrite the current deployed configuration. I am able to do this with the sites config but cannot with the deploy slot.
Here is an example…

jasonc
- 213
- 1
- 7
3
votes
1 answer
Azure Functions: Deploying to stage slot also deploys to production slot
I have an Azure Function App v3 running a Node.js app that has a production and a stage slot. It gets deployed to from GitHub using an Action created in Deployment Center. I have one deploy action for prod and one for stage, and have verified that…

papakpmartin
- 193
- 9
3
votes
1 answer
Trying to deploy to Azure using GitHub actions
I'm using the following YAML to deploy to an Azure App Service:
- name: dotnet publish
run: dotnet publish -c Release -o '${{ env.AZURE_WEBAPP_PACKAGE_PATH }}/myapp'
# Deploy to Azure Web apps
- name: 'Run Azure webapp deploy action using…
user12585721
3
votes
1 answer
Azure webapp deployment
I am studying to do my AZ-204 exam and have come across a bank of questions. There is a question I am trying to get my head around and it is todo with deploying a webapp via the cli. The answer I would give is different in one place and that is the…

Sam
- 80
- 8
3
votes
1 answer
How to update a pipeline variable after the task is succeeded, through `output variable` section or some other method in Azure devops
I want to update a pipeline variable once my task is finished. Can I do it through output variable section provided in azure DevOps?
The main objective is to let downstream tasks know that the list of specific previous tasks have succeeded, which I…

Mehul Parmar
- 347
- 4
- 21
3
votes
1 answer
What is the best way to deploy front end and back end application in Azure App Service?
We are developing a front end app using Reactjs and back end using Nodejs separately but I am not very familiar with how the deployment works for back end in Azure App Service. I already deployed our front end successfully and it is now up and…

Deegee
- 91
- 1
- 5
3
votes
2 answers
How can I set the EnvironmentName for XML transformation during a deployment job?
Alright folks, giving Azure multi-stage-pipelines feature a go and not having much luck getting xml transformations using a deployment job to work.
Update: This is not using the Classic Deploy/Release UI in Azure DevOps
What I've done so…

jdiaz
- 7,354
- 12
- 42
- 51
3
votes
0 answers
Easily Export Visual Studio User Secrets Values to Production Environment Variables or Azure Key Vault
I am using User Secrets for my Blazor ASP.NET Core 3.1 application and it works really well in my development environment. However, I am anticipating the moment that I will have to export these values to my production environment and am having…

Mike-E
- 2,477
- 3
- 22
- 34
3
votes
2 answers
Excluding a file in Azure Function from Azure Deployment
We have an Azure Function project that contains a specifically named file that makes local debugging much easier. However we do not want that file to ever be deployed to Azure.
The standard package and publish process explicitly knows about the file…

Pat Long - Munkii Yebee
- 3,592
- 2
- 34
- 68