focusreactive / cms-kit

The project serves the idea of making Headless CMS-based development accessible, comfortable, and fast.
https://turbo-cms-kit-storyblok.vercel.app
3 stars 1 forks source link
headless-cms sanity storyblok

CMS-Kit 🔧

An endeavor accumulating the experience and best practices collected at Focus Reactive. The project serves the idea of making Headless CMS-based development accessible, comfortable, and fast.

Quick start

What you get

  1. New Storyblok space, set up with vercel deployments
  2. 10+ ready to use components with different presets(styles)
  3. New Vercel project, deployed and configured with your new Storyblok space
  4. Multiple ready pages in different styles

Storyblok

  1. Since application will be deployed to Vercel, make sure your Github account is linked to Vercel. You can do it here.

  2. Create a new repository using this template by clicking the "Use this template" button at the top of the repository page. Screenshot 2024-11-07 at 13 38 48

  3. Await the initial workflow to be finished

Screenshot 2024-11-07 at 16 00 17

  1. Clone your new repository:

    git clone <your-repository-url>
  2. Navigate to the project directory:

    cd <repository-name>
  3. Install dependencies using pnpm:

    pnpm install
  4. Navigate to the Storyblok CLI directory:

    cd apps/storyblok/CLI
  5. Run the setup script,

⚠️ command should be executed from apps/storyblok/CLI (previous step), to consume correct environment variables:

   node sb.mjs
  1. Follow the interactive prompts in the CLI tool to:
    • Enter your Storyblok Personal Access Token
    • Enter your Vercel Personal Auth Token
    • Select your Vercel team
    • Choose a project name
    • Complete the space creation and configuration process

[TODO]: add video example

Sanity

soon

Demo 👀

Core Features

Repo structure

Types of components

Components composition and hierarchy

The website structure follows a clear hierarchical composition:

  1. Pages

    • Top-level components that represent entire web pages
    • Each page contains multiple sections, SEO properties and theme
  2. Sections

    • Container components that organize content into distinct areas
    • Can be configured with settings like margin, background, width, alignment etc.
    • Hold and arrange other components
  3. Base Components

    • Components like link, image, and rich text
    • Combination of multiple functional components like card
    • Can be combined and reused across different sections

RichText component has additional functionality. It allows to add sections inside, which gives ability to combine sections with text.

Add new section

  1. Create new component using generators
pnpm gen
  1. Select type of component to create
- UI: Create a new UI component
- Storyblok: Create a new content section
- Sanity: Create a new content section
  1. Enter name of the component
  2. For Storyblok, add section component to the CMS
  3. Update properties and design
  4. Go to CMS folder
cd apps/storyblok

or

cd apps/sanity
  1. Generate types for added section
# For Storyblok you will additionally
# need to log into CLI
pnpm sb-login

pnpm gen:types

⚠️If you generating types for Storyblok, make sure you logged into CLI⚠️

Update existing section

  1. Updata design
  2. Update fields
  3. Go to CMS folder
cd apps/storyblok

or

cd apps/sanity
  1. Generate types for updated section
pnpm gen:types

Start project in dev mode

Instalation

  1. Clone repository
    git clone https://github.com/focusreactive/cms-kit
  2. Go to project directory
    cd cms-kit
  3. Install dependencies
    pnpm install

Environment variables

Storyblok project

Create .env and .env.local files in the root of your project and add the following variables:

.env

REPO_PROD_BRANCH="main"
REPO_TYPE="github"
REPO_ID="[repo id]"
REPO_NAME="[nickname]/[repo name]"

.env.local

# Created by Vercel CLI
NEXT_PUBLIC_API_GATE="https://api.storyblok.com/v2/cdn"
NEXT_PUBLIC_DOMAIN="https://localhost:4050"
NEXT_PUBLIC_IS_PREVIEW="true"
NEXT_PUBLIC_SB_REGION="EU"
NEXT_PUBLIC_URL="https://localhost:4050"
SB_PREVIEW_TOKEN="[storyblok space preview token]"
SB_WEBHOOK_REVALIDATE_SECRET="[storyblok webhook revalidate key]"

Sanity

.env

REPO_PROD_BRANCH="main"
REPO_TYPE="github"
REPO_ID="[repo id]"
REPO_NAME="[nickname]/[repo name]"

.env.local tbd

  1. Create a new repo based on cms-kit template Screenshot 2024-10-24 at 17 52 54
  2. Pull repo locally
  3. Install packages
    pnpm install
  4. Go to CLI folder
    cd apps/storyblok/cli
  5. Execute command
    node sb.mjs
  6. Follow steps

Happy hacking 👾