https://cloudfixum.herokuapp.com
https://cloudfixum-develop.herokuapp.com
Requirement to have nodejs v14.3.0 installed and then clone the repository
git clone https://github.com/cloudfixum/frontend.gitInstall dependencies
npm installRun project locally
npm startFormat code with prettier Important!!!!
npm run prettierInstall Heroku cli
npm install -g herokuLogin on Heroku
heroku loginCreate app of heroku
heroku create cloudfixum-develop --remote heroku-staging --buildpack mars/create-react-appAdd remote repository of heroku
heroku git:remote -a https://git.heroku.com/cloudfixum-develop.gitRenaming remotes
git remote rename heroku heroku-staging- If we are going to deploy in staging
git push heroku-staging develop:master- If we are going to deploy to production
git push heroku master