Re-Deploy Your Project on heroku and firebase

Faisal Ahmed - May 31 '22 - - Dev Community

Client side :

First of all client side code upload in github.

git add .
git commit -m" commit message"
git push

then:

npm run build
firebase deploy
Enter fullscreen mode Exit fullscreen mode

Server side

First of all Server side code upload in github.

git add .
git commit -m" commit message"
git push

then:

git push heroku main
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .