Pushing to Heroku - Sliverb/PandaFactor GitHub Wiki
Open a command line and navigate to this project's root.
Login to Heroku.
heroku login
Enter the credentials. You can find them in the OneNote.
Configure the heroku remote if it hasn't been.
Check to see if it's been configured by entering git remote -v
and if there aren't two lines starting with "heroku" enter the following command:
heroku git:remote -a internnest
If you enter git remote -v
again, you should now see two lines starting with "heroku"
Add you changes from the repository by entering this at the root of the project
git add .
Commit your changes
git commit -am "A description of what you're submitting"
Finally enter
git push heroku master