0 votes
in Azure by
Is there a way to view deployed files in Azure?

1 Answer

0 votes
by

If you're just trying to look around, and see the various directories and files in your deployment, you can enter the site's "Kudu" dashboard (called Advanced Tools), using the url format http://<yoursitename>.scm.azurewebsites.net

Kudu is the engine behind git deployments in Azure Web Sites. This will give you a web-based dashboard, including a debug console (web-based) where you can explore your various directories (and the directories will show up visually as well).

...