PUSH CODE ON HEROKU
How to push code on Heroku:-
I give some steps , we can easily deploy the project on Heroku :-
Firstly, we have to generate the ssh-keys:-
ssh-keygenssh-add
Then login on heroku account using command line:-
heroku loginIf we don't have install the heroku then we have to install the heroku using:-
gem install herokuheroku login
Add the keys on heroku:-
heroku keys:addCreate the application on heroku:-
heroku create project-graphInitialize the project using :-
git initAdd the remote:-
git remote -vgit remote add heroku https://git.heroku.com/project
git remote -v
Comments