Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Latest commit

 

History

History
35 lines (23 loc) · 905 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 905 Bytes

Jekyll blog with Strapi

Simple Jekyll blog powered by Strapi

Backend

This Jekyll application use the Strapi blog template. Create a Strapi project named backend using the blog template:

# Using Yarn
yarn create strapi-app backend --template https://github.com/strapi/strapi-template-blog

# Or using NPM
npx create-strapi-app backend --template https://github.com/strapi/strapi-template-blog

The Strapi server will automatically start and import sample seed data.

Frontend

Leave the Strapi backend running in the background. Open another terminal tab, clone this repository and make sure you're in the frontend directory:

cd frontend

Install gems and start the Jekyll server:

bundle install
bundle exec jekyll serve

The Jekyll server will run here => http://localhost:4000