Most samples can be run using OpenSearch installed locally with Docker.
Add the default admin
password to the environment.
export OPENSEARCH_PASSWORD=myStrongPassword123!
docker pull opensearchproject/opensearch:latest
docker run -d -p 9200:9200 -p 9600:9600 -e OPENSEARCH_INITIAL_ADMIN_PASSWORD=$OPENSEARCH_PASSWORD -e "discovery.type=single-node" opensearchproject/opensearch:latest
Install poetry.
poetry install
poetry run python hello/hello.py