1.0.2 • Published 3 years ago

@artizy-io/strapi-template-blog v1.0.2

Weekly downloads
12
License
-
Repository
github
Last release
3 years ago

strapi-template-blog

A Strapi template to create Strapi projects pre-configured for blog apps.

Usage

:warning: this template is forked from the strapi github but evolved to be used as a smerge strapi-template by @artizy-io/merge-utils/smerge utility. the smerge utility merges multiple templates into the strapi applications directories: +-- api +-- components +-- config +-- data +-- extensions

:warning: the smerge strapi utility requires a strapi patch which is applied in a monorepo configuration, so please only use if following the artizy-backend-monorepo structure.

to use a merged strapi-template, update your backend strapi application under backend/package.json with:

package.json:

  "dependencies": {
    "@artizy-io/strapi-template-blog": "^1.0.0",
    "@artizy-io/strapi-template-ecommerce": "^1.0.0",
    "@artizy-io/strapi-template-corporate": "^1.0.0",
    ...
  },
  "devDependencies": {
      "@artizy-io/strapi-utils":"^1.0.0"
  },
  "scripts": {
    "postinstall": "yarn run smerge",
    ...
   },