You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# List Python Dependencies
$ pip freeze > requirements.txt
# Specify Python Version
$ echo"python-2.7.14">> runtime.txt
3. Submit Git Local Repository & Heroku Remote App
# Git Local
$ git init
$ git add .
$ git commit -m "initial commit"# Heroku Remote
$ heroku login # enter your Heroku credentials
$ heroku create # use "git remote -v" to check the remote url
$ git push heroku master
# Show Heroku App in Browser
$ heroku open
# For An Existing Heroku App
$ heroku git:remote -a thawing-inlet-61413 # modified with your heroku app’s name
* Run Heroku Remote Bash
$ heroku run bash # enter heroku remote bash
$ heroku run COMMAND # command usage