Ask HN: Where do you deploy to in 2018 and how?
31–40 of 85 posts
Re: Ask HN: Where do you deploy to in 2018 and how?
#32Re: Ask HN: Where do you deploy to in 2018 and how?
#33Most of my projects are Rails-based, and I tend to use DO [0], and have just discovered Hatchbox [1] to deploy. Super easy for side-projects to get started and deployed. Taken deploying side projects from days to minutes. [0] https://www.digitalocean.com/ [1] https://www.hatchbox.io/
[0] https://digitalocean.uservoice.com/forums/136585-digitalocea...
Re: Ask HN: Where do you deploy to in 2018 and how?
#34Re: Ask HN: Where do you deploy to in 2018 and how?
#35We're in the middle of piloting a switch to Nomad (https://www.hashicorp.com/products/nomad), replacing much of the custom deployment system with it, though still running on bare-metal servers. It's an absolutely fabulous bit of software that really hits the use-cases for an organisation of our size, so I'm excited to see how that works out.
For side-projects where things like HA aren't much of a concern, I've settled on some minimal shell scripts to deploy tarballs over SSH. It's actually pretty neat – CI builds a project, and runs a small script to copy the results to a server and restart the services. It's always worth considering the simple solutions if you don't need the more advanced features!