DEV Community

Discussion on: Guideline for building project

 
shinabr2 profile image
ShinaBR2

Haha my project is personal also. But because I'm lazy, I choose Netlify.
Everytime I push code into my develop branch, Netlify automatically build and deploy for you. That's the basic CI/CD I think we need for every project.

Thread Thread
 
dwoodwardgb profile image
David Woodward

I disagree. My "CI/CD" is simply running:

yarn build
yarn deploy

Under the hood those map to firebase commands. But this is a thing about which reasonable people can disagree.

Thread Thread
 
shinabr2 profile image
ShinaBR2

I see. Firebase CLI and GCP is also a good way for modern CI/CD. Everything has its own pros and cons. I have used both and depend on situation, I'll choose the right solution for.