Walks through the deployment of a fully functional MVC4 + SignalR + Knockout.Js solution called ChirpyR.
Original ChirpyR Author: Sumit Maitra @sumitkm
- Create new WebSite with Database.
- Provision new Azure SQL Database server and database.
- Update the 2 connection strings in the MVC4 projects web.config to consume the Azure SQL Database created in the above step.
- Set up Git publishing.
- Navigate to solution location on local disk.
git init
git add .
git commit -m "initial commit"
git remote add azure <GIT_URI_HERE>
git push azure master