@artizy-io/strapi-template-ecommerce
v1.0.3
Published
template to create Strapi projects pre-configured for e-commerce apps
Downloads
2
Readme
strapi-template-ecommerce
A Strapi template to create Strapi projects pre-configured for e-commerce 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",
...
},