Hacker News new | ask | show | jobs
by elsyms 3218 days ago
Why do you need a deployment system if you have nothing to deploy? Build the project locally, then use continuous delivery when you have something to deliver.
1 comments

"Build the project locally" implies some kind of pipeline system, even if it's not "deployment" or "delivery".

Triggering that pipeline from a commit trigger instead of manually just means copying the build command into a config file. It pays for itself in the first hour.

`git push deploy`

You can get quite far without any kind of "pipeline system" nor does building imply a pipeline.