DEV Community

Faisal Ahmed
Faisal Ahmed

Posted on

Re-Deploy Your Project on heroku and firebase

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

Top comments (0)