Skip to content
This repository has been archived by the owner on Apr 1, 2019. It is now read-only.

Latest commit

 

History

History
42 lines (30 loc) · 718 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 718 Bytes

Breadheadless CMS

Simple and powerful headless CMS provide fancy admin interface and reliable backend for your application.

Usage

yarn add @breadhead/cms

// server.js
const { cms } = require('@breadhead/cms')

const entities = /* ... */
const firstPlugin = /* ... */
const otherPlugins = /* ... */

cms(entities)
  .use(firstPlugin)
  .use(...otherPLugins)
  .run(4343)

Enjoy!

Contributing

Install project

git clone ...
yarn
yarn dev

You are beautiful!

Also...

We use @solid-soda/script:

  • yarn s pretty to fix code-style
  • yarn s lint to run linters
  • yarn s cz to commit changes
  • yarn s release to create new release