Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 897 Bytes

File metadata and controls

33 lines (23 loc) · 897 Bytes

Azure Search Service Query Builder

This is a simple utility for building Azure Search Service queries.

You simply configure your endpoint and then you can tweak the various input parameters and see what the request and responses look like from Azure Search

Requirements

  • Node JS 8.9.4+
  • Azure Search Service Configuration Information (including Search Key and CORS setup, see trouble shooting section)

Getting it running

docker-compose up
# or, if you'd rather run it in pieces:
docker build -t azure-search-admin -f dockerfile.admin .
docker run -p 3000:3000 -d azure-search-admin
docker build -t azure-search-admin -f dockerfile.proxy .
docker run -p 5000:5000 azure-search-proxy

or...

cd admin && npm install && npm start # start up the site on :3000
cd proxy && npm install && npm start # start up the proxy on :3001

Troubleshooting

  • CORS
  • TODO