This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config({ silent: true }); | |
const cors = require('cors'); | |
const express = require('express'); | |
const axios = require('axios'); | |
const http = require("http"); | |
const jwt = require('jsonwebtoken'); | |
const socketIo = require("socket.io"); | |
const bodyParser = require('body-parser') | |
const { createProxyMiddleware } = require('http-proxy-middleware'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: "Open Sans"; | |
font-style: normal; | |
font-weight: 300; | |
src: local("Open Sans Light"), local("OpenSans-Light"), url(data:font/woff;base64,d09GRgABAAAAAFTwABAAAAAAk7gAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABbAAAABwAAAAcXLlcaU9TLzIAAAGIAAAAXQAAAGCg1LufY21hcAAAAegAAAFpAAABsozo3JljdnQgAAADVAAAAF0AAACqEusTqWZwZ20AAAO0AAAEnwAAB7R+YbYRZ2FzcAAACFQAAAAQAAAAEAAeACNnbHlmAAAIZAAAN4gAAFWgflHLXGhlYWQAAD/sAAAAMwAAADb5cRTIaGhlYQAAQCAAAAAeAAAAJA7yBThobXR4AABAQAAAAgMAAANYeaRbNGtlcm4AAEJEAAALagAAIwQMlg8JbG9jYQAATbAAAAGuAAABruqP1mxtYXhwAABPYAAAACAAAAAgAoQBVW5hbWUAAE+AAAAC3wAABrEB9k2JcG9zdAAAUmAAAAFwAAAB8oJ46dVwcmVwAABT0AAAAR4AAAE63o6iXQAAAAEAAAAAyYlvMQAAAADJQhTbAAAAAMnt2Fx4AWNgZtFg1GFgZeBgncVqzMDAKA+hmS8ypDG+4WBi4mZmY2ZlYWJiecDA9N6BQSGagYFBgwEIDB2DnYGUgsIaNvl/IgwtHL1MEQoMjPNBciz2rNuAFJALAHPDDcQAAAB4AWJgYGCGYhkGRgYQWAPkMYL5LAwTgLQCELIA6TqG/4yGjMFMx5huMd1REFGQUpBTUFKwUnBRKFFY8/8/WOUCoIogqAphBQkFGaAKS5iK/4//H/o/8X/h3/9/3/x9/WDrg00PNj5Y92DGg/4HCQ80gXYSBIxsQAxjMwEJJnQFQK+wAMTKxs7BycXNw8vHLyAoJCwiKiYuISklL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -X POST 'localhost:9200/products1/product/__suggest?pretty=1' -d '{ "field": "ProductName.suggest", "term": "tischwäsche", "size": "10" }' |