Skip to content

Instantly share code, notes, and snippets.

@shanselman
Created January 30, 2014 21:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanselman/8720212 to your computer and use it in GitHub Desktop.
Save shanselman/8720212 to your computer and use it in GitHub Desktop.
General idea is/
* get an azure trial at azure.com. 10 free websites per region.
get the azure command line with npm
>npm install azure-cli --g
Now you can type "azure" and call rest services to do anything.
import your account creds:
>azure account download
(get the publishsettings file, then)
>azure account import
Now you never need to do that again.
Make a site like this from your node site
>azure site create SITENAME --location "East US" --git
You'll put in a username for publishing then
>git add .
>git commit -m "initial"
>git push azure master
and it's live
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment