Commit 76daf9f9 by Иван Кубота

Try on all products page

Local data mock Server requests Filter by sku feature Do not show empty categories/products/variants Variant is empty is it does not have sku New README with manual for starting server locally
parent 2adbfb03
This diff is collapsed. Click to expand it.
/*
Observable Store based in 2016 April by Ivan Kubota
License: MPL 2.0
Contact: zibx@quokka.pub
*/
const isEqual = function(original, fn) {
return function(val) {
fn(val===original);
......
......@@ -36,6 +36,7 @@ app.get('/batch_face_recognition', (req, res) => res.sendFile(path.join(viewsDir
app.get('/demo', (req, res) => res.sendFile(path.join(viewsDir, 'demo.html')));
app.get('/demo2', (req, res) => res.sendFile(path.join(viewsDir, 'demo2.html')));
app.get('/all', (req, res) => res.sendFile(path.join(viewsDir, 'all.html')));
app.get('/tryon', (req, res) => res.sendFile(path.join(viewsDir, 'tryon.html')));
app.post('/fetch_external_image', async (req, res) => {
const { imageUrl } = req.body
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment