In this part I’ll create quite simple app and this is “developer” piece of work.
We need to install node, npm & meteor on work machine:
brew install nodejs curl https://install.meteor.com/ | sh
I’ve created git repository on BitBucket & synced it to my work machine:
So far we’re ready to make our meteor app, and let’s do it:
meteor create --example leaderboard
And let’s move app content directly to git repo:
Let’s run our app:
meteor run
Cool, so lets commit & push our app to BitBucket repo:
Now, lets create dev branch:
And now let’s make changes to app:
We don’t need mobile platforms support right now, so let’s remove ’em:
meteor remove-platform ios meteor remove-platform android
Now let’s commit & push dev branch:
That’s all from “developer” side, further we’ll operate as “DevOps”.
See app example here – https://bitbucket.org/kagarlickij/meteorapp/