git remote add heroku
heroku git:remote -a project
git remote add heroku
heroku git:remote -a project
how to deploy on heroku
heroku login
heroku create
git add .
git commit -m "test"
git push heroku master
heroku ps:scale web=1
heroku open
push heroku
$ git push heroku master
deploy to heroku
$ git add .
$ git commit -m "Added a Procfile."
$ heroku login
Enter your Heroku credentials.
...
$ heroku create <app-name>
Creating arcane-lowlands-8408... done, stack is cedar
// now create procfile
//
//node app.js
//
$ git push heroku master
-----> Node.js app detected
...
-----> Launching... done
http://arcane-lowlands-8408.herokuapp.com deployed to Heroku
how to deploy heroku app
I assume you know how to use git.
I also assume you've ran the heroku create command for the app.
First commit the app if you haven't, then run this command:
git push heroku master
If there's an error, then try to fix it.
After that access the website by running this command:
heroku open
And run this command if you encounter an error with the website:
heroku logs --tail
set git remote heroku to https://git.heroku.com/resume-projects.git
$ git push heroku testbranch:master
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us