Code for Information Retrieval project
This repository is organized into multiple directories, each containing its own README with instructions for running that specific part of the project.
To run the demo, please refer to the README inside the engine directory.
-
Install docker
-
Run the following:
curl -fsSL https://elastic.co/start-local | shThis will create a local Elasticsearch and Kibana setup and a elastic-start-local directory with a .env file with passwords and the API key. After installing the services will be running on the following ports:
-
Elasticsearch: http://localhost:9200
-
Kibana: http://localhost:5601
Test the connection with:
cd elastic-start-local/
source .env
curl $ES_LOCAL_URL -H "Authorization: ApiKey ${ES_LOCAL_API_KEY}"- To stop the services, run:
cd elastic-start-local
./stop.sh- To start the services again, run:
cd elastic-start-local
./start.sh- Uninstall:
cd elastic-start-local
./uninstall.sh