DEV Community

Adela
Adela

Posted on • Updated on

Build my JAMstack Blog with Nextjs (on Vercel) + Ghost (on Render)

As a former front-end developer who gave up coding several years ago, my 2022's new year resolution is back to tech world as DevRel.

The very first task ahead is to setup my learning blog using Up-To-Date Tech. (the Last blog I built was by wordpress 10 years ago :) ) For me, this mini-project means to get hands dirty again and setup something workable, while not going too deep into coding.

Jamstack is the new standard architecture for the web. Using Git workflows and modern build tools, pre-rendered content is served to a CDN and made dynamic through APIs and serverless functions. Technologies in the stack include JavaScript frameworks, Static Site Generators, Headless CMSs, and CDNs.
Image description

[Front-end] NextJS on Vercel

I heard about Vercel a lot these days, so it was firstly counted in. Nextjs is the first choice on Vercel dashboard, though I haven't learned Reactjs before, I decided to pick it anyway.

After authorized with my Github account, Vercel cloned the Nextjs template into my new repo and deployed it on Vercel server – now the visitor can view my site directly.

Compared with the old manual way

  1. Download
  2. Run locally
  3. Find a server to upload and deploy

Vercel compresses them into one click. Super neat!

[Back-end] Ghost on Render

Now for back-end, I need some ready-to-use CMS. Ghost is an open-sourced, self-hostable, headless CMS.

If I use Ghost service directly, the price is okay, but I want more flexibility and play around with more products.

Image description

Render has a free plan to start.
Image description

And Render also has detailed page about ghost deployment step-by-step https://render.com/docs/deploy-ghost

  1. Fork render-examples/ghost on GitHub or click ‘Use this template’.
  2. Create a new Web Service on Render, and give Render permission to access your new repo.
  3. Make sure the Environment is set to Docker and enter a name for your service.

Half done! Now we have a working CMS and we will fetch its content by API to display in our Nextjs page.

In Ghost Settings, add one new integration, copy the API URL and Content API key.
Image description

Paste them to Vercel Settings as Environment Variables.
Image description

Add the API in our Nextjs project:

import GhostContentAPI from "@tryghost/content-api";

// Create API instance with site credentials
const api = new GhostContentAPI({
    url: process.env.GHOST_URL,
    key: process.env.GHOST_API_KEY,
    version: "v4",});

// Grab all posts from Ghost
export async function getPosts() {
    return await api.posts
        .browse({
        limit: "all",
        })
        .catch((err) => {
        console.error(err);
        });}
Enter fullscreen mode Exit fullscreen mode

Hoooray! the data could be fetched successfully.

While coding the styles (using tailwind), I found my ghost account was kicked out approximately every 30mins and I have to regenerate the content API key.

With the help from my colleague, I realized it's because *Free account CPU is shared.
Image description

According to https://render.com/docs/free#free-web-services

"Free web services can be restarted at any time."

Yes, I upgraded! And everything works fine! Mission complete!

Image description

You can find my source code here https://github.com/adela-bytebase/nextjs-adela-fun-blog

Top comments (0)