CodeIgniter Forums
Which deployment tool do you recommend - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1)
+--- Forum: Lounge (https://forum.codeigniter.com/forumdisplay.php?fid=3)
+--- Thread: Which deployment tool do you recommend (/showthread.php?tid=73502)



Which deployment tool do you recommend - JanFromHamburg - 05-01-2019

Hi everyone,
deploying to online dev and production server takes a lot of my time.
What software do you use to deploy? Opensource or small team solutions preferred.
Appreciate your feedback!
Thanks! Jan


RE: Which deployment tool do you recommend - kilishan - 05-01-2019

Hey Jan - At my dayjob we use a fairly simple Python script based around Fabric that works really well. We keep tweaking it as things come up and makes a deployment as simple as:

Code:
fab stage deploy:master    // Deploy to staging
fab deploy:master  // Deploy to production

It's not perfect, but handles 99% of things we've ever needed to do including compiling javascript files, updating the branch to latest, ensuring Composer dependencies are up to date, etc.

I've heard pretty good things about Deployer in the past but haven't used it. It is PHP-based.