manticoresoftware / buddy-plugin-knn
The Buddy KNN doc joiner plugin
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
pkg:composer/manticoresoftware/buddy-plugin-knn
Requires
- manticoresoftware/buddy-core: dev-main
Requires (Dev)
- phpstan/phpstan: ^1.8
- phpunit/phpunit: ^9.5
- slevomat/coding-standard: ^8.5
- squizlabs/php_codesniffer: ^3.7
This package is auto-updated.
Last update: 2024-02-22 20:52:24 UTC
README
This is an initial template of a plugin for Buddy that you can use to develop.
How to start
- Create a repository from this template.
- Open composer.jsonand edit it with your plugin name, dependencies, and everything else you need.
- Run composer installto make it work.
- You need to use our official manticore-executor; we strictly recommend using the Docker flow.
- Edit src/Payload.php, add logic to parse the request, and prepare the payload structure for your command processing.
- Edit src/Handler.phpand implement processing logic and response that will be proxied by Manticore to the client.
How to use Docker of manticore-executor-dev
- 
Clone Buddy somewhere to your host machine and go into it. 
- 
Run this command to create a Docker image named manticore-buddy:docker run --privileged --entrypoint bash -v $(pwd):/workdir -w /workdir --name manticore-buddy --network host -it manticoresearch/manticore-executor-kit:latest
- 
Now you can edit /etc/manticore.confand configure the development version of Buddy:buddy_path = manticore-executor-dev /workdir/src/main.php --debug
- 
Run searchd --nodetachto keep the daemon in the foreground and enjoy the development of your new plugin.
Notes
You can use pre-commit to install code style and code analyze hooks by running pre-commit install. Check our PHP code style and guide here.