At OakTree Apps, we are big fans of open-source projects. It helps us develop beautiful products at a faster pace without reinventing the wheel.

The team initially spend time looking into integrating a WordPress blog into the site. We soon realized that a WP installation would require a CMS to manage the content on the back-end.

After researching a bit, we eventually settled into using Gatsby. And here’s why:

  1. It is blazing fast as you can see here.
  2. It is an open-source project and has very solid community support.
  3. It is a react-based, static site generator, which is a huge benefit over WP as it eliminates the need for having a CMS.
  4. It uses GraphQL to build the underlying data layer, which means that you can supply gatsby with data from any conceivable source. It can be a markdown, json, xml, third party API integration or a combination of all of them.

So with all that being said, let’s jump right in.

Note: This post uses netlify for deployment. If you haven’t heard of netlify, check them out here!

  1. For this post, we shall use be using this template. For more templates click here.

  2. Now let’s dig through the various folders within the template folder. You should have a folder structure that looks something similar to this:

    Untitled

  3. Let’s look at some of the key files within the folder:

    • The content folder consists of your blog the folder which will host your blog(s).

    • The gatsby-browser.js file includes links to the various styling/formatting aspects for your blog. For example, CSS file(s) or any custom fonts that you use.

    • The gatsby-config.js includes the various plugins and any customization to your blog in terms of accessing URLs, static resources, etc.

    • The src folder contains a bunch of different folders as seen in the image:

      Untitled

    • Open the bio.js file in a text editor. Change the default profile picture by locating the following line:avatar: file(absolutePath: { regex: "/profile_picture.png/" }) Your profile picture should reside within the content/assets folder.

    • Open the gatsby-config.js file and change the siteMetaDatato reflect the appropriate author, title, description, and your social media URLs.

  4. Now navigate to the blog folder and run the following command:gatsby developOnce the command has been executed successfully, go to yourlocalhost. Your blog should now running on your localhost.

  5. We also need to make sure that the blog runs correctly from your website subdirectory. In order to do so, open the gatsby-config.js file and set thepathPrefix option. You can checkhere for more details.

  6. Once the pathPrefix has been added, run the following command:gatsby build --prefix-pathsMake sure that the flag is passed or Gatsby will ignore the flag and your blog will not be able to access the static resources.

  7. Once the command has been executed successfully, navigate to yourmy-blog/public folder. Your public folder should look something like this:Create a new folder called blog within your website directory. Copy all the contents of the my-blog/public folder intopath/to/website/blogfolder.

    Untitled

  8. Navigate to your website directory via terminal and run the following command:netlify deployYou can also drag and drop your website folder into the netlify dashboard for deployment.However, this approach only works for sites which are less than 50MB in size.For sites that are larger, it is recommended to use thenetlify cli, since it provides us with error logs for debugging purposes in case something goes wrong.You might need to download the cli herebefore running the above command.

  9. If the netlify deploy command has been executed successfully, it will provide you with a Live Draft URL that can be used to view the website. Think of it as a pre-production site.If you are happy with the result, run the following command:netlify deploy --prod to deploy the site to your domain.

In this post, we looked at how to integrate a Gatsby blog to an existing website.

We are a mobile first development agency. Check our website or send us an email at [email protected] with your thoughts or questions.

0