One place for hosting & domains

      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:

      • 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:

      • cd gatsby-starter-default

      Then install the Node dependencies:

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

      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:

      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="https://www.digitalocean.com/community/tutorials/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:

      Now navigate into your newly created gifs folder:

      Download a whales GIF from Giphy:

      • 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:

      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:

      • cd ../..
      • 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:

      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:

      Next, add any modified files to git:

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

      • 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 "[email protected]"
        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:

      • 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:

      Finally, push your code to your newly created repo:

      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.



      Source link


      Leave a Comment