Tutorial

How To Deploy a Gatsby Application to DigitalOcean App Platform

Published on March 26, 2021
Default avatar

By Portia Burton

Founder of DocumentWrite

How To Deploy a Gatsby Application to DigitalOcean App Platform

The author selected /dev/color to receive a donation as part of the Write for DOnations program.

Introduction

In this tutorial, you will deploy a Gatsby application to DigitalOcean’s App Platform. App Platform is a Platform as a Service that builds, deploys, and manages apps automatically. When combined with the speed of a static site generator like Gatsby, this provides a scalable JAMStack solution that doesn’t require server-side programming.

In this tutorial, you will create a sample Gatsby app on your local machine, push your code to GitHub, then deploy to App Platform.

Prerequisites

Step 1 — Creating a Gatsby Project

In this section, you are going to create a sample Gatsby application, which you will later deploy to App Platform.

First, clone the default Gatsby starter from GitHub. You can do that with the following command in your terminal:

  1. git clone https://github.com/gatsbyjs/gatsby-starter-default

The Gatsby starter site provides you with the boilerplate code you need to start coding your application. For more information on creating a Gatsby app, check out How To Set Up Your First Gatsby Website.

When you are finished with cloning the repo, cd into the gatsby-starter-default directory:

  1. cd gatsby-starter-default

Then install the Node dependencies:

  1. npm install

After you’ve downloaded the app and installed the dependencies, open the following file in a text editor:

  1. nano gatsby-config.js

You have just opened Gatsby’s config file. Here you can change metadata about your site.

Go to the title key and change Gatsby Default Starter to Save the Whales, as shown in the following highlighted line:

gatsby-starter-default/gatsby-config.js
module.exports = {
  siteMetadata: {
    title: `Save the Whales`,
    description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
    author: `@gatsbyjs`,
  },
  plugins: [
    `gatsby-plugin-react-helmet`,
    {
      resolve: `gatsby-source-filesystem`,
      options: {
        name: `images`,
        path: `${__dirname}/src/images`,
      },
    },
    `gatsby-transformer-sharp`,
    `gatsby-plugin-sharp`,
    {
      resolve: `gatsby-plugin-manifest`,
      options: {
        name: `gatsby-starter-default`,
        short_name: `starter`,
        start_url: `/`,
        background_color: `#663399`,
        theme_color: `#663399`,
        display: `minimal-ui`,
        icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
      },
    },
    // this (optional) plugin enables Progressive Web App + Offline functionality
    // To learn more, visit: https://gatsby.dev/offline
    // `gatsby-plugin-offline`,
  ],
}

Close and save the file. Now open the index file in your favorite text editor:

  1. nano src/pages/index.js

To continue with the “Save the Whales” theme, replace Hi people with Adopt a whale today, change Welcome to your new Gatsby site. to Whales are our friends., and delete the last <p> tag:

gatsby-starter-default/src/pages/index.js
import React from "react"
import { Link } from "gatsby"
import { StaticImage } from "gatsby-plugin-image"

import Layout from "../components/layout"
import SEO from "../components/seo"

const IndexPage = () => (
  <Layout>
    <SEO title="Home" />
    <h1>Adopt a whale today</h1>
    <p>Whales are our friends.</p>
    <StaticImage
      src="../images/gatsby-astronaut.png"
      width={300}
      quality={95}
      formats={["AUTO", "WEBP", "AVIF"]}
      alt="A Gatsby astronaut"
      style={{ marginBottom: `1.45rem` }}
    />
    <Link to="/page-2/">Go to page 2</Link> <br />
    <Link to="/using-typescript/">Go to "Using TypeScript"</Link>
  </Layout>
)

export default IndexPage

Save and close the file. You are going to swap out the Gatsby astronaut image with a GIF of a whale. Before you add the GIF, you will first need to create a GIF directory and download it.

Go to the src directory and create a gifs file:

  1. cd src/
  2. mkdir gifs

Now navigate into your newly created gifs folder:

  1. cd gifs

Download a whales GIF from Giphy:

  1. wget https://media.giphy.com/media/lqdJsUDvJnHBgM82HB/giphy.gif

Wget is a utilty that allows you to download files from the internet. Giphy is a website that hosts GIFs.

Next, change the name from giphy.gif to whales.gif:

  1. mv giphy.gif whales.gif

After you have changed the name of the GIF, move back to the root folder of the project and open up the index file again:

  1. cd ../..
  2. nano src/pages/index.js

Now you will add the GIF to your site’s homepage. Delete the StaticImage import and element, then replace with the following highlighted lines:

gatsby-starter-default/src/pages/index.js
import React from "react"
import { Link } from "gatsby"

import whaleGIF from "../gifs/whales.gif"
import Layout from "../components/layout"
import SEO from "../components/seo"

const IndexPage = () => (
  <Layout>
    <SEO title="Home" />
    <h1>Adopt a whale today</h1>
    <p>Whales are our friends.</p>
    <div style={{ maxWidth: `300px`, marginBottom: `1.45rem` }}>
        <img src={whaleGIF} alt="Picture of Whale from BBC America" />
    </div>
    <Link to="/page-2/">Go to page 2</Link> <br />
    <Link to="/using-typescript/">Go to "Using TypeScript"</Link>
  </Layout>

Here you imported the whales GIF and included it in an image tag between the <div> element. The alt tag informs the reader where the GIF originated.

Close and save the index file.

Now you will run your site locally to make sure it works. From the root of your project, run the development server:

  1. gatsby develop

After your site has finished building, put localhost:8000 into your browser’s search bar. You will find the following rendered in your browser:

Front page of a Save the Whales website

In this section, you created a sample Gatsby app. In the next section, you are going to push your code to GitHub so that it is accessible to App Platform.

Step 2 — Pushing Your Code to GitHub

In this section of the tutorial, you are going to commit your code to git and push it up to GitHub. From there, DigitalOcean’s App Platform will be able to access the code for your website.

Go to the root of your project and create a new git repository:

git init

Next, add any modified files to git:

  1. git add .

Finally, commit all of your changes to git with the following command:

  1. git commit -m "Initial Commit"

This will commit this version of your app to git version control. The -m takes a string argument and uses it as a message about the commit.

Note: If you have not set up git before on this machine, you may receive the following output:

*** Please tell me who you are.

Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

Run the two git config commands to provide this information before moving on. If you would like to learn more about git, check out our How To Contribute to Open Source: Getting Started with Git tutorial.

You will receive output like the following:

Output
[master 1e3317b] Initial Commit 3 files changed, 7 insertions(+), 13 deletions(-) create mode 100644 src/gifs/whales.gif

Once you have committed the file, go to GitHub and log in. After you log in, create a new repository called gatsby-digital-ocean-app-platform. You can make the repository either private or public:

Creating a new github repo

After you’ve created a new repo, go back to the command line and add the remote repo address:

  1. git remote set-url origin https://github.com/your_name/gatsby-digital-ocean-app-platform

Make sure to change your_name to your username on GitHub.

Next, declare that you want to push to the main branch with the following:

  1. git branch -M main

Finally, push your code to your newly created repo:

  1. git push -u origin main

Once you enter your credentials, you will receive output similar to the following:

Output
Counting objects: 3466, done. Compressing objects: 100% (1501/1501), done. Writing objects: 100% (3466/3466), 28.22 MiB | 32.25 MiB/s, done. Total 3466 (delta 1939), reused 3445 (delta 1926) remote: Resolving deltas: 100% (1939/1939), done. To https://github.com/your_name/gatsby-digital-ocean-app-platform * [new branch] main -> main Branch 'main' set up to track remote branch 'main' from 'origin'.

You will now be able to access your code in your GitHub account.

In this section you pushed your code to a remote GitHub repository. In the next section, you will deploy your Gatsby app from GitHub to App Platform.

Step 3 — Deploying your Gatsby App on DigitalOcean App Platform

In this step, you are going to deploy your app onto DigitalOcean App Platform. If you haven’t done so already, create a DigitalOcean account.

Open your DigitalOcean control panel, select the Create button at the top of the screen, then select Apps from the dropdown menu:

Go to drop down menu and select Apps

After you have selected Apps, you are going to retrieve your repository from GitHub. Click on the GitHub icon and give DigitalOcean permission to access your repositories. It is a best practice to only select the repository that you want deployed.

Choose the repo you want deployed

You’ll be redirected back to DigitalOcean. Go to the Repository field and select the project and branch you want to deploy, then click Next:

Selecting your GitHub repository on the DigitalOcean website

Note: Below Branch there is a pre-checked box that says Autodeploy code changes. This means if you push any changes to your GitHub repository, DigitalOcean will automatically deploy those changes.

On the next page you’ll be asked to configure your app. In your case, all of the presets are correct, so you can click on Next:

Configuring your app

When you’ve finished configuring your app, give it a name like save-the-whales:

Name your app

Once you select your name and click Next, you will go to the payment plan page. Since your app is a static site, you can choose the Starter plan, which is free:

Choose starter plan

Now click the Launch Starter App button. After waiting a couple of minutes, your app will be deployed.

Navigate to the URL listed beneath the title of your app. You will find your Gatsby app successfully deployed.

Conclusion

In this tutorial, you created a Gatsby site with GIFs and deployed the site onto DigitalOcean App Platform. DigitalOcean App Platform is a convenient way to deploy and share your Gatsby projects. If you would like to learn more about this product, check out the official documentation for App Platform.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


Tutorial Series: How To Create Static Web Sites with Gatsby.js

Gatsby is a React framework that allows you to create static and serverless apps. Gatsby websites are different from traditional websites because they are usually deployed on a content delivery network (CDN) and are content agnostic. In this tutorial, you will learn the basics of creating a site with Gatsby, allowing you to create static sites that are optimized for your users.

About the authors
Default avatar

Founder of DocumentWrite

I own a technical documentation agency called DocumentWrite. I love writing JavaScript and documentation.

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
1 Comments


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

This article is wrong. You currently don’t support Gatsby in such a simple manner. Support node 18 or take down this article cause it’s misleading.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel