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?
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