From 1fae7e526a3badf979e506a8e101bbee8a746fb7 Mon Sep 17 00:00:00 2001 From: dblock Date: Sun, 4 Aug 2024 08:50:07 -0400 Subject: [PATCH] Correct version comparisons for ML tests. Signed-off-by: dblock --- DEVELOPER_GUIDE.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 5c71551e..3c2b13cd 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -44,6 +44,14 @@ composer run integration ``` +```bash +export OPENSEARCH_PASSWORD=myStrongPassword123! +export OPENSEARCH_URL=https://admin:$OPENSEARCH_PASSWORD@localhost:9200 + +composer run integration +``` + + ### Static analyse and code style checker The project uses PhpStan for static analyse and php-cs-fixer for code style checker. You can use both tools with following codes