Step 1 – First We will simply start with new application creation. Just Run following commands one by one in CMD command prompt.
$ npm install -g [email protected]
$ ionic start IonicProDemo
$ cd IonicProDemo
Step 2 – Now go to Ionic Dashboard, If you don’t have an account, register and then log in.
Step 3 – Dashboard will have steps. In the second step there will be two options “START A NEW APP” and “CONNECT EXISTING APP” as we have already created an app, we will select the second option.
$ionic link --pro-id 7f7d7ada
Step 4 – Push local code to the ionic dashboard using the command.
$git push ionic master
Step 5 – Ionic Pro only provides versioning and code deployment system, but we need out own Versioning control where we can upload our code to. We will use GitLab.com. Just create a free account here GitLab or just log in if you already have an account.
Step 5 – Now add this repository to our Ionic app using the following command
$git remote add origin https://gitlab.com/ipsjolly/IonicProDemo.git
$git push --set-upstream origin master