BlogImage

10 Steps To Integrate Netlify CMS In Your Jamstack Website Using GraphQL

Introduction

Netlify CMS is an open source content management system for your Git workflow that enables you to provide editors with a friendly UI and intuitive workflows. Add Netlify CMS to your site by creating and configuring files, then connecting the CMS to your site through user authentication. And finally, you'll learn how to access the CMS admin so that you can write your blog post.

Basic Introduction of Netlify CMS & GraphQL

What is Netlify CMS ?

Netlify CMS is an open-source content management system for enabling your Git workflow. It provides user-friendly UI and intuitive workflows. Using this netlify cms concept create faster, more flexible web projects with any static site generator. Content is stored in your Git repository alongside your code for easier versioning, multi-channel publishing, and the option to handle content updates directly in Git.

What is GraphQL ?

GraphQL is a query language for your API, and a server-side runtime for executing queries by using a type system you define for your data. GraphQL isn't tied to any specific database or storage engine and is instead backed by your existing code and data.

What is Markdown File ?

An MD file is a text file created using one of several possible dialects of the Markdown language. It is saved in plain text format but includes inline symbols that define how to format the text (e.g. bold, indentations, headers, table formatting). MD files are designed for authoring plain text documentation that can be easily converted to HTML.

Prerequisites

- Basic knowledge about the Vue JS and GraphQL APIs

- Must Have a Netlify account and should be familiar with Netlify Portal

Let's start !!!

Step 1: Create a netlify account

Select your preferred authentication signup method or use your email.

![Create a Netlify account](/uploads/blog/Screenshot from 2021-03-31 10-57-03.png )

Step 2: Create the site from git

After succesfully creating the account, you'll be able to access Netlify dashboard. To Create a New Netlify Hosted site from your Github repository Follow the below mentioned steps.

- Click on "New site from Git" - Select GitHub as your provider - Choose the Repo that you would like to Host.

create the site from git

Step 3: Configure your settings

Here you can configure your options. Make sure your site build command is "npm run build" and public directory will be "dist".Then click on "Deploy site"

Configure Your Settings

Step 4: Build & deploy your site

Now your site is ready to build and host with the free hosting

Build & Deploy your site

Step 5: Adding netlify CMS to an existing site

Netlify CMS itself consists of a Single Page Application built with React that lives in an admin folder on your site. admin ā”œ index.html ā”” config.yml

admin/index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Content Manager</title>

    <script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
  </head>
  <body>
    <!-- Include the script that builds the page and powers Netlify CMS -->
    <script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
  </body>
</html>

If the location of the file is admin/index.html , then the entry point for the Netlify CMS admin interface will be accessible by navigating to "yoursite.com/admin/.

admin/config.yml

backend:
name: git-gateway
branch: master # Branch to update (optional; defaults to master)

media_folder: "static/uploads"
public_folder: "/uploads"

collections:

- name: "blog" # Used in routes, e.g., /admin/collections/blog
  label: "Blog" # Used in the UI
  folder: "blog" # The path to the folder where the documents are stored
  create: true # Allow users to create new documents in this collection
  slug: "{{day}}-{{month}}-{{year}}" # Filename template, e.g., YYYY-MM-DD-title.md
  fields: # The fields for each document, usually in front matter
  - {label: "Title", name: "title", widget: "string", required: true}
  - {label: "Blog Creater Name", name: "blogerName", widget: "string", required: true}

The backend section covers the basics like which branch to update and sets up the Git Gateway connection that we talked about earlier. The publish_mode property sets up our workflow to use the editorial mode. In short, this means that we have the ability to save page drafts as pull requests in Git before we decide to publish them.

Step 6: Upload folder

Create an "upload" folder at "static/uploads" location in your base directory to store media files. After creating the folder set the folder path in config.yml for "media_folder" and "public_folder" entries.

Upload folder

Step 7: Enable identity

After configuring the project , visit Netlify console to enable the Identity. Go to the Identity tab and click on "Enable Identity" which will successfully enable your identity for Authentication Purpose.

enable the identity

Step 8: Enable git gateway

Go to the "Gateway" tab in the settings section. In the "Gateway" tab click on Enable gateway. This process is important to Enable the access of the Admin login and registration page to stored content inside the git project.

Enable Git gateway

Step 9: The user authentication

To set user authentication using netlify cms using email verification. first, goto to the Identity instance then registration preferences then click on Invite only and add user email id then send an email for access to the admin side

the User authentication

Step 10: Ready to use

URL : <your_website name>/admin