Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 629 Bytes

File metadata and controls

23 lines (21 loc) · 629 Bytes

Sandbox

This project serves as a sandbox environment for testing and experimenting with the search-application-client library.

Getting Started

  1. Install dependencies
yarn install
  1. Update the SearchApplicationClient params in App.tsx with the applicationName, endpoint, apiKey and params for your search experience if needed.
const request = SearchApplicationClient(
  /*Application name*/,
  /*Elasticsearch endpoint*/,
  /*API key*/,
  /*Additional params*/,
  /*API options*/
)
  1. Start server. This will start the server on port 3000.
yarn start