Book Image

Microsoft Azure Development Cookbook Second Edition

Book Image

Microsoft Azure Development Cookbook Second Edition

Overview of this book

Table of Contents (15 chapters)
Microsoft Azure Development Cookbook Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Deploying a Website


Creating a Website is an administrative task, which is performed in the Azure Portal in the same way we provision every other building block. The Website created is like a "deployment slot", or better, "web space", since the abstraction given to the user is exactly that.

Azure Websites does not require additional knowledge compared to an old-school hosting provider, where FTP was the standard for the deployment process. Actually, FTP is just one of the supported deployment methods in Websites, since Web Deploy is probably the best choice for several scenarios. In the Source versioning and continuous integration with Git and TFS recipe, we will learn how to implement continuous integration with Websites, but since this is not always necessary, consider FTP and Web Deploy to be the fastest lane to go live with this service.

Tip

Web Deploy is a Microsoft technology used for copying files and provisioning additional content and configuration to integrate the deployment process...