DEV Community

Discussion on: How do you deploy stuff? And what is the tool you use for?

Collapse
 
spboyer profile image
Shayne Boyer

I am a huge proponent of - "Just Check in my code".

git push ftw

Now to say that there is a lot behind enabling me or the developer to have that luxury. Some CI/CD system is there to do the heavy lifting. Could be Travis, Codeship or VSTS that

  • gets a webhook
  • pulls the code
  • builds the docker container
  • builds the code, runs the test
  • tags the container and pushes it the to registry
  • sends the webhook to deploy to production / staging or whichever environment

But in the end...just checking in the code should do what we need as developers.