Quick Tip! Your WebApp development flow with Azure and GitHub
So, say you wanna be an organized developer (who doesn't?). Well how does your GitHub repo look like?
Sometimes something simple can do the trick.
Let's say we have the branches set up like this:
dev - The latest dev snapshot, so you can pull from everywhere.
staging - Automatically gets built and put on staging.
master - Automatically gets built and put into production.
With Azure you set up your production website to automatically pull from the 'master' branch.
Then set up your 'staging' site to pull from your staging branch.
Now on the dev environment, don't work with any branch other than 'dev'.
When you think a change is ready for staging, create a pull request.
Simple as that. Something every developer should know, but many don't.

















