How to automate deployment to shared hosting using CircleCI

Most of the tutorials are based on AWS, Azure and other could servers. And they have explained it very well.

But, there are still lots of project still hosted on simple shared host environments like Ionos (former 1and1), GoDaddy and Hostpapa.

This hosts are great for the value for money, but they miss the “simple” integration offered by other cloud services.

In this post we are going to cover all the steps necessary to fully implement an automatic deployment from Github/BitBucket directly to a shared host (in Our case godaddy) using CircleCI

CircleCI

We use CircleCI to automate deployment, tests and builds on its own. This process will reduce your time and efforts.

Another great advantage of CircleCI is the free tear, that is more than enough for personal/small projects. The initial tear offers 2500 credit a week with one Job indefinitely.

Circleci price

CircleCI can easily integrate with Github.You can login on CircleCI by your Github account. Setting up a new project is quite simple, and it just takes a few steps as shown on the official website: https://circleci.com/docs/2.0/getting-started/

CI pipeline

All the power of CircleCI lies within the configuration yaml that lives within a specific repository. This file includes all the information necessary for the deployment. In our case we have the following steps to complete before our pipeline is completed:

  1. Setup the Config.yml
  2. Setup Git FTP
  3. Set Environment variable in CircleCi

Setup Config.yml

The first step required is to setup a config.yml for our circleCi to use and work. This file, lives within a folder called .circleci within the root of our repository. The .circleci/config.yaml file will automatically created one you setup your project in circleCI.

The following file is all CircleCI need to know what to do:

version: 2
 jobs:
  deploy:
    docker:
      - image: cimg/base:2021.01
    steps:
      - checkout
      - attach_workspace:
          at: ./imarun
      - run: 
          name: Deploy Main Branch
          command: |
            sudo apt-get update
            sudo apt-get -qq install git-ftp
            echo "Deploying project ..."
            git ftp push --user "${ftp_user}" --passwd "${ftp_password}" ${ftp_path}

 workflows:
   version: 2
   main-deploy:
     jobs:
       - deploy:
           context: imarun
           filters:
             branches:
               only: main # only deploy on the master branch

First we need to set up the Docker image that we are going to use. In my case I needed php, therefore I am loading a base environment:

    docker:
      - image: cimg/base:2021.01

Second, it is time to define the steps of our Job. This can vary from project to Project. In the above case we are going to:

  • Checkout the branch (we will define which branch later)
  • Fetch Git FTP and use to to deploy to our shared hosting ( we will cover more of this later)
    steps:
      - checkout
      - run: 
          name: Deploy Main Branch
          command: |
            sudo apt-get update
            sudo apt-get -qq install git-ftp
            echo "Deploying project ..."
            git ftp push --user "${username}" --passwd "${password}" ${ftp_location}

Lastly, it is time to define our workflow. In our case, it is a simple one, that just has one Job (the one defined above), and has a filter to run on a specific branch main:

workflows:
  version: 2
  main-deploy:
    jobs:
      - deploy:
          filters:
            branches:
              only: main

Setup Git FTP

The simplest way to deploy our site to our shared host, is to use Git FTP. This package, allows us to manage and deploy git repository by FTP. You can use your server FTP details as Git-FTP.

The difference between this and a normal FTP is the ability to DIFF branches, commit, by just uploading the file that have changed since last deploy. Before we can start and use this on our CircleCI workflow, I suggest to initialise it locally. This step is NOT required, but from my own experience, it can make the overall command and setup easier.

You can get the instruction to fetch Git FTP for your own operating system from the official website: https://github.com/git-ftp/git-ftp.

The GIT FTP has 3 commands:

  • Init: This will upload ALL files to your FTP and record the first deployment hash.
  • Catchup: It assumes that you have uploaded all file already. Using this command will “Update” the .git-ftp.log with the current commit (this is useful if it is an existing project)
  • Push: This command is used to push new files into an ongoing production.

As shown above, depending on your situation (new or existing project), you may need to use one of the following two commands:

git ftp init --user "MyUsername" --passwd "MyPassword" ftp.path.com/public_html

git ftp catchup --user "MyUsername" --passwd "MyPassword" ftp.path.com/public_html

After this, our Git FTP is ready to be used, and we can therefore continue our configuration by setting up the information used above within circleCi environment variables.

Set Environment variable in CircleCi

In the above command, we had to “hardcode” out FTP information. This is surely not something that we want to add within out Config.Yml file, as it is pushed within our repository.

CircleCi offers the possibility to set environment variables. These are going to replace string delimited by the following syntax ${myVariableName} within your config.yaml file (as shown above, where we already defined username, password and Ftp location).

To setup an environment variable in CircleCi, click on the Project settings on the top right of the screen

Circleci project

Then it is time to select Environment Variables from the left hand menu

Circleci environment variable

Now you can easily setup your variables, making sure that the name set is the same as the one defined within our config.yml file.In my case I have setup Organisation variables with context. But you can use the above process to create environmental variables.

Deploy

Create your feature branch from main branch. Push and create Pull request. Now you can get reviews on you pull request if any. When you click on Merge pull request the deployment process starts.

CircleCi is fantastic in providing all the information necessary to debug and fix the deployment if anything is wrong.

Circleci pipelines

The one shown in this article is just a simple workflow. CircleCI is not just used for deployment, but very useful to define a full complex pipeline that may involve Contract tests, PHPCS (PHP lint) Unit tests, E2E tests, and much more.

Please follow and like us:
error0
fb-share-icon20
Tweet 20
fb-share-icon20

1 comment

Leave a comment

Your email address will not be published. Required fields are marked *