How to manage an azure local web app file via Git VM - azure

I want to manage a file in webapp from a Git repo stored in a VM, I've created a Web App and I need to know if I can relieted it to a git repo stored in a Azure VM.

You can do it in 2 ways:
Deploy from local Git with Kudu builds
Deploy from local Git with Azure DevOps Services builds
The detailed steps are mentioned in this article

Related

Deploying Django app to Azure successful but shows the default django page, not my app

I checked to see if my files exist in wwwroot and this is what it showed:
I don't know how to get my files here.
Any advice?
If you are using windows plan after deployed to azure you need to git clone your repo after you've initialized your local Git repo on the Azure Web App.
After created the Web app in azure you need to set a continuous deployment.
Clone your deployed web app by using the url
git clone <your_url_convert_to_clone>
Your every change, git add., git commit, and git push them back to the repo in Azure to see your changes there.
Refer here
If you are using linux app service please have a look here

Deploy azure arm template from local git

I know you can push from local git and deploy code is azure web app.
But i want
first Deploy complete arm template from scratch using local git push.
and in the same push i want to deploy website code.
Now question is if arm template is creating web app from scratch then which git repo to push .
i am confused in this can some body tell me proper way to achieve this.
well, you would need to create a hook, that would launch a script that would deploy your template. After the deployment is complete your script would get the git url from the webapp it deployed and push from local git to that repo.
That being said, it is 100 times easier to just place files on github and configure continuous delivery that would happen on its own. all you would need to do is to push to git from local repo.
Reference:
https://learn.microsoft.com/en-us/azure/app-service-web/app-service-deploy-local-git
https://learn.microsoft.com/en-us/azure/app-service-web/app-service-continuous-deployment

Getting data from azure remote repo

I'm deploying with Visual Studio Team services to Azure (NodeJS) but the problem is when files are changed in the remote repo in azure (through my site) I can't get them to my local repo. How can I get it without manually going in and copy the files? (Git pull doesn't work)
According to your description, I assume that your local repository is link to VSTS repo and VSTS repo push files to Azure Remote Repo. In this scenario, your local repo isn't linked to Azure Remote Repo, when you execute git pull from local repo, it just try to pull the changes from VSTS repo, not Azure Repo. To pull the changes from Azure Repo, trying the steps blow:
Configure "Deployment credentials" from Azure Portal. You'll need to use this credential to authenticate Azure Repo.
Open Kudu service page of your webapp. For example, if your app url is "https://app1.azurewebsites.net/", then the Kudu service page is "https://app1.scm.azurewebsites.net/".
Click "Source control info" link in Kudu service page. You will get the URL of the Azure Remote Repository.
Go to your local repo and add a remote repo with the URL you get from Step 3.
Perform a pull action from the new added remote repo and enter the credential you configured in Step 1 when prompted.

How to deploy an angular2 application as a webapp in azure

Can someone help me deploy an angular2 application as a webapp in azure. I have a github enterprise setup. On my Jenkins server, I would like to do a no build. On successful completion of the build, I'd like to push it to a webapp.
Every deployment I attempted, failed on npm of one form or other. I don't want to create a VM and deploy a server.
I'd appreciate any help on this.
Deployment of all supported web applications to azure web app service ( PaaS and not IaaS VM as per your requirement) is possible by the following options
from git CLI you can publish the code from your local repository to azure.
linking an online repository like bitbucket, gitlabs to azure
Powershell - publish code from your local repository to azure
Azure CLI - publish code from your local repository to azure
FTP option is available as well.
Check out this post to see how you can publish using git commandline https://learn.microsoft.com/en-us/azure/app-service-web/app-service-deploy-local-git

Automatically upload local changes into windows azure / amazon s3 cloud server

I have to create a Visual Studio project with the following functionality,
Once the project is created, the service should automatically upload the project files in to cloud storage (using windows azure or amazon s3 server).
If any changes in the project files, instead of uploading the whole project, only the modified files has to be uploaded. ( like SVN commit).
Could anyone please let me know if you have any ideas on this?
What you describe is more-or-less what "git deployment" is about - deploying changes to a web site or application by pushing the changes from a local git repository to a remote one. The deployment triggers a service or script on the remote repository that updates your site.
Azure supports this for Azure Web Sites. See for example Continuous deployment using GIT in Azure App Service for a step-by-step guid on how to create a new site, deploy and update it using Git.
The engine that automates git deployments in Azure is available as an open source project, Project Kudu which can be hosted outside Azure, eg on your own web server.
Amazon doesn't offer all of this out of the box. Its Elastic Beanstalk offering allows you to publish an ASP.NET MVC project to a specific configuration (VMs, settings etc) right from Visual Studio but it's a manual process and doesn't deploy only changes. Check How to Deploy an Application Using Elastic Beanstalk for a step-by-step guide.
You can use Project Kudu on an Amazon VM to use git deployment. This won't set up the VMs as Beanstalk does, but it will deploy only the changes to your site.

Resources