Last active
February 4, 2020 21:45
-
-
Save silversonicaxel/546b0e7dfaab56f4a78cc856c31d4220 to your computer and use it in GitHub Desktop.
HEROKU #heroku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create project | |
heroku create | |
# run the project locally | |
heroku local web | |
# command to login the remote bash of the project you are in | |
heroku run bash | |
# command to watch logs | |
heroku logs --tail | |
heroku ps:scale web=1 | |
heroku ps:scale web=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment