DEV Community

Abdul Matin Rafi
Abdul Matin Rafi

Posted on

Re-Deploy in your Project in firebase and heroku

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)