Skip to content

Latest commit

 

History

History
58 lines (31 loc) · 1.24 KB

File metadata and controls

58 lines (31 loc) · 1.24 KB

WAWSDeploy

Simple command line tool to deploy a folder or a zip file to an Azure Website using WebDeploy. See this post for details.

Sample use:

WAWSDeploy c:\somefolder mysite.PublishSettings
WAWSDeploy c:\somefile.zip mysite.PublishSettings

With optional password argument

WAWSDeploy c:\somefolder mysite.PublishSettings /p mypubsettingspassword
WAWSDeploy c:\somefolder mysite.PublishSettings /password mypubsettingspassword

Allowing untrusted cert

WAWSDeploy c:\somefolder mysite.PublishSettings /au

Do Not Delete files on the remote host

WAWSDeploy c:\somefolder mysite.PublishSettings /d

Verbose Logging

WAWSDeploy c:\somefolder mysite.PublishSettings /v

What If deployment

WAWSDeploy c:\somefolder mysite.PublishSettings /w

To build this project

npm install -g grunt-cli
npm install
grunt

History

3/26/2013: v1.3

Add support for untrusted certs.

3/6/2013: v1.2

Support optionally passing password

3/5/2013: v1.1

Support publishing from zip files

3/5/2013: v1.0

Original version