This addon sets up a qdrant instance for your DDEV project. qdrant is a vector similarity search engine and vector database.
- Run
ddev get netz98/ddev-qdrant
to install the addon in your exiting ddev project. ddev restart
to restart your project.
After installation, you can access the qdrant instance by visiting https://<yourname>.ddev.site:6333
.
For accessing the dashboard you can visit https://<yourname>.ddev.site:6333/dashboard
Run ddev describe
to list your project's services and their URLs.
Different clients can be found in qdrant Github
Settings are in general defined in the file .ddev/docker-compose.qdrant.yaml
via environment variables.
An overview of the possible configrations can be found here: https://qdrant.tech/documentation/guides/configuration/#configuration
The qdrant collections will be created as folder in .ddev/qdrant_data/collections
.
qdrant logs are directed to the container's stdout. You can view the logs with ddev logs -s qdrant
.