Web Design
I’ve known for a long time that manually transferring websites over FTP wasn’t the correct way to do it, but having the time to investigate and implement another method was tricky, we work to tight schedules here at WATB. Luckily though after completing a recent project I had some time to look into deployment, and the tool we ended up trying out was Deploybot.
Deploybot acts as a sort of tunnel between your Git repositories and your hosting. It allows you to link up a repo to multiple hosting accounts, through what it calls environments. An environment allows you to control exactly where your deployments end up.
For example, a basic implementation, and one ideal for most of our projects, involves having a Staging environment and a Production environment. We connect our staging environment to our testbench – this is a portion of our own hosting we use for testing client sites. The production environment is then linked to the clients live hosting.
We’re then able to link different branches of our repos to each environment. so we have a Staging branch and our usual Master branch which we use to push to production.
Here then is a simple walk through of how we set up Deploybot. It won’t cover everything in detail but it should give you a pretty good idea of how it works.
Your projects probably aren’t best set up for Deploybot off the bat. I’d therefore strongly suggest a good old fashioned repo tidy up – removing dud files, cruft and anything that isn’t relevant to the project, for example rogue PSDs. Once your repo is OCD level of clean and tidy, add a Staging branch by running:
git checkout -b STAGING
git push origin STAGING
Setting up a Deploybot account is straight forward so I won’t bore you with the details – but once you have done so login to your dashboard. Then, from the menu at the top, select Repositories and click the Connect a Repository button. You’ll then get a screen like this:
If you haven’t already connected a Bitbucket, Github or self-hosted Git account, you’ll be prompted to do so. It’s pretty straightforward, at least for Github or Bitbucket.
Once you select your repo and click Connect, you’ll need to wait a few minutes for Deploybot to connect the repo to your account. Then, click through to your repo from the Repositories page. You’ll then get a page of environments, a bit like the one below, but yours will be empty.
If like me, the Staging and Production setup is enough, you’ll need to add these. Click “Add an environment” and you’ll get a page like the one below.
Make sure you select the correct branch as per you repo, so that your Staging environment uses your Staging branch, etc. You should also only enable automatic deployments for staging. If you break your staging site, it isn’t of tremendous consequence. Breaking a live client site with a rogue deploy could have serious consequences for both you and your client, so you should only manually deploy.
Your next step will be to connect to the relevant server. Remember to connect to yours for Staging, and your clients for production. You’ll get a screen like this:
You ideally want to use SSH/SFTP if possible, but many clients still use shared hosting so normal FTP is possible. You still avoid many of the pitfalls that you experience using FTP clients.
When you finish adding in the server information, Deploybot will attempt to connect. If successful, you’ve finished setting up your environment. You can then repeat this process for setting up each environment you need.
Remember to specify the server path to your project. For WordPress themes this will be the theme folder. I generally recommend not including the whole CMS in a repo. I also recommend that you empty folders before you run your first deployment, to avoid any potential issues, but of course backing up first.
You’re now all set up and ready to rock and roll with Deploybot. You should first test your Staging deployment by pushing a commit to your Staging branch. If all goes well, the deployment will automatically run and you should see the change on your server.
We’ve already found numerous benefits to using a deployment tool.
There’s many other benefits, but these were what I could think of. We’ve only been using Deploybot a few days and already it’s clear to see how tools such as this allow for a better, more efficient, more safe front-end workflow.
Stay up to date with the latest marketing, web design, and branding tips and news.