├── .gitignore ├── ABOUT.md ├── LICENSE ├── README.md ├── StackScript ├── TODO.md ├── files └── README.md ├── index.js ├── model.json ├── package.json ├── process.sample.json ├── public └── images │ ├── favicon-static.ico │ ├── favicon.ico │ ├── merchant-icon-logo-sm.png │ └── merchant-icon-tiles-sm.png ├── screenshots ├── a.jpg ├── b.jpg ├── c.jpg └── d.jpg ├── server.devel.js ├── server.js ├── system ├── event │ └── test-user │ │ └── index.js ├── handler │ ├── download-file │ │ └── index.js │ ├── simple-render │ │ └── index.js │ └── stripe-charge │ │ └── index.js ├── helpers │ ├── product-expander │ │ └── index.js │ ├── product-object-lookup │ │ └── index.js │ └── secure-link │ │ └── index.js ├── middleware │ ├── catch-all │ │ └── index.js │ ├── create-data-model │ │ └── index.js │ ├── create-event-model │ │ └── index.js │ ├── error-handler │ │ └── index.js │ ├── install-page-links │ │ └── index.js │ ├── installer │ │ └── index.js │ └── populate-data-model │ │ └── index.js ├── value │ ├── browse-products │ │ └── index.js │ ├── featured-products │ │ └── index.js │ ├── popular-products │ │ └── index.js │ ├── related-products │ │ └── index.js │ └── selected-product │ │ └── index.js └── view │ ├── about.hbs │ ├── cards │ ├── livePreviewCard.hbs │ ├── productCard.hbs │ ├── productLicensingCard.hbs │ ├── productPropertiesCard.hbs │ ├── productScreenshotCard.hbs │ └── quickPurchaseCard.hbs │ ├── charge.hbs │ ├── error.hbs │ ├── index.hbs │ ├── partials │ ├── buyButton.hbs │ ├── footer.hbs │ ├── header.hbs │ ├── htmlFoot.hbs │ ├── htmlHead.hbs │ ├── intro.hbs │ ├── navigation.hbs │ └── subtitle.hbs │ ├── product.hbs │ └── products.hbs └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/.gitignore -------------------------------------------------------------------------------- /ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/ABOUT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/README.md -------------------------------------------------------------------------------- /StackScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/StackScript -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/TODO.md -------------------------------------------------------------------------------- /files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/files/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/index.js -------------------------------------------------------------------------------- /model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/model.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/package.json -------------------------------------------------------------------------------- /process.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/process.sample.json -------------------------------------------------------------------------------- /public/images/favicon-static.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/public/images/favicon-static.ico -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/merchant-icon-logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/public/images/merchant-icon-logo-sm.png -------------------------------------------------------------------------------- /public/images/merchant-icon-tiles-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/public/images/merchant-icon-tiles-sm.png -------------------------------------------------------------------------------- /screenshots/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/screenshots/a.jpg -------------------------------------------------------------------------------- /screenshots/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/screenshots/b.jpg -------------------------------------------------------------------------------- /screenshots/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/screenshots/c.jpg -------------------------------------------------------------------------------- /screenshots/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/screenshots/d.jpg -------------------------------------------------------------------------------- /server.devel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/server.devel.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/server.js -------------------------------------------------------------------------------- /system/event/test-user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/event/test-user/index.js -------------------------------------------------------------------------------- /system/handler/download-file/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/handler/download-file/index.js -------------------------------------------------------------------------------- /system/handler/simple-render/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/handler/simple-render/index.js -------------------------------------------------------------------------------- /system/handler/stripe-charge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/handler/stripe-charge/index.js -------------------------------------------------------------------------------- /system/helpers/product-expander/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/helpers/product-expander/index.js -------------------------------------------------------------------------------- /system/helpers/product-object-lookup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/helpers/product-object-lookup/index.js -------------------------------------------------------------------------------- /system/helpers/secure-link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/helpers/secure-link/index.js -------------------------------------------------------------------------------- /system/middleware/catch-all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/middleware/catch-all/index.js -------------------------------------------------------------------------------- /system/middleware/create-data-model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/middleware/create-data-model/index.js -------------------------------------------------------------------------------- /system/middleware/create-event-model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/middleware/create-event-model/index.js -------------------------------------------------------------------------------- /system/middleware/error-handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/middleware/error-handler/index.js -------------------------------------------------------------------------------- /system/middleware/install-page-links/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/middleware/install-page-links/index.js -------------------------------------------------------------------------------- /system/middleware/installer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/middleware/installer/index.js -------------------------------------------------------------------------------- /system/middleware/populate-data-model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/middleware/populate-data-model/index.js -------------------------------------------------------------------------------- /system/value/browse-products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/value/browse-products/index.js -------------------------------------------------------------------------------- /system/value/featured-products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/value/featured-products/index.js -------------------------------------------------------------------------------- /system/value/popular-products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/value/popular-products/index.js -------------------------------------------------------------------------------- /system/value/related-products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/value/related-products/index.js -------------------------------------------------------------------------------- /system/value/selected-product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/value/selected-product/index.js -------------------------------------------------------------------------------- /system/view/about.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/about.hbs -------------------------------------------------------------------------------- /system/view/cards/livePreviewCard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/cards/livePreviewCard.hbs -------------------------------------------------------------------------------- /system/view/cards/productCard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/cards/productCard.hbs -------------------------------------------------------------------------------- /system/view/cards/productLicensingCard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/cards/productLicensingCard.hbs -------------------------------------------------------------------------------- /system/view/cards/productPropertiesCard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/cards/productPropertiesCard.hbs -------------------------------------------------------------------------------- /system/view/cards/productScreenshotCard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/cards/productScreenshotCard.hbs -------------------------------------------------------------------------------- /system/view/cards/quickPurchaseCard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/cards/quickPurchaseCard.hbs -------------------------------------------------------------------------------- /system/view/charge.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/charge.hbs -------------------------------------------------------------------------------- /system/view/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/error.hbs -------------------------------------------------------------------------------- /system/view/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/index.hbs -------------------------------------------------------------------------------- /system/view/partials/buyButton.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/buyButton.hbs -------------------------------------------------------------------------------- /system/view/partials/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/footer.hbs -------------------------------------------------------------------------------- /system/view/partials/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/header.hbs -------------------------------------------------------------------------------- /system/view/partials/htmlFoot.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/htmlFoot.hbs -------------------------------------------------------------------------------- /system/view/partials/htmlHead.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/htmlHead.hbs -------------------------------------------------------------------------------- /system/view/partials/intro.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/intro.hbs -------------------------------------------------------------------------------- /system/view/partials/navigation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/navigation.hbs -------------------------------------------------------------------------------- /system/view/partials/subtitle.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/partials/subtitle.hbs -------------------------------------------------------------------------------- /system/view/product.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/product.hbs -------------------------------------------------------------------------------- /system/view/products.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/system/view/products.hbs -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyui-com/online-marketplace/HEAD/test/test.js --------------------------------------------------------------------------------