├── .editorconfig ├── .env ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── config ├── admin.js ├── api.js ├── database.js ├── middlewares.js └── server.js ├── database └── migrations │ └── .gitkeep ├── favicon.png ├── package.json ├── public ├── robots.txt └── uploads │ └── .gitkeep └── src ├── admin ├── app.example.js └── webpack.config.example.js ├── api ├── .gitkeep ├── category │ ├── content-types │ │ └── category │ │ │ └── schema.json │ ├── controllers │ │ └── category.js │ ├── routes │ │ └── category.js │ └── services │ │ └── category.js ├── order │ ├── content-types │ │ └── order │ │ │ └── schema.json │ ├── controllers │ │ └── order.js │ ├── routes │ │ └── order.js │ └── services │ │ └── order.js └── product │ ├── content-types │ └── product │ │ └── schema.json │ ├── controllers │ └── product.js │ ├── routes │ └── product.js │ └── services │ └── product.js ├── extensions ├── .gitkeep └── strapi-stripe │ └── public │ └── stripe.js └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | **/node_modules/** 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/README.md -------------------------------------------------------------------------------- /config/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/config/admin.js -------------------------------------------------------------------------------- /config/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/config/api.js -------------------------------------------------------------------------------- /config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/config/database.js -------------------------------------------------------------------------------- /config/middlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/config/middlewares.js -------------------------------------------------------------------------------- /config/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/config/server.js -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/favicon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/package.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/admin/app.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/admin/app.example.js -------------------------------------------------------------------------------- /src/admin/webpack.config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/admin/webpack.config.example.js -------------------------------------------------------------------------------- /src/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/category/content-types/category/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/category/content-types/category/schema.json -------------------------------------------------------------------------------- /src/api/category/controllers/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/category/controllers/category.js -------------------------------------------------------------------------------- /src/api/category/routes/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/category/routes/category.js -------------------------------------------------------------------------------- /src/api/category/services/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/category/services/category.js -------------------------------------------------------------------------------- /src/api/order/content-types/order/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/order/content-types/order/schema.json -------------------------------------------------------------------------------- /src/api/order/controllers/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/order/controllers/order.js -------------------------------------------------------------------------------- /src/api/order/routes/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/order/routes/order.js -------------------------------------------------------------------------------- /src/api/order/services/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/order/services/order.js -------------------------------------------------------------------------------- /src/api/product/content-types/product/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/product/content-types/product/schema.json -------------------------------------------------------------------------------- /src/api/product/controllers/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/product/controllers/product.js -------------------------------------------------------------------------------- /src/api/product/routes/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/product/routes/product.js -------------------------------------------------------------------------------- /src/api/product/services/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/api/product/services/product.js -------------------------------------------------------------------------------- /src/extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/extensions/strapi-stripe/public/stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/extensions/strapi-stripe/public/stripe.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShariqAnsari88/strapi-simple-one/HEAD/src/index.js --------------------------------------------------------------------------------