From aa0dce772a7a6f2c9b499b325f2cd47b3813293a Mon Sep 17 00:00:00 2001 From: Skye Gill Date: Fri, 3 Feb 2023 15:02:03 +0000 Subject: [PATCH] update docs to use flagd binary directly Signed-off-by: Skye Gill --- tests/integration/README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/integration/README.md b/tests/integration/README.md index 1010c4925..d357fc8e3 100644 --- a/tests/integration/README.md +++ b/tests/integration/README.md @@ -5,17 +5,15 @@ If you'd like to run them locally, first pull the `test-harness` git submodule ``` git submodule update --init --recursive ``` -then build your flagd image +then build the flagd binary ``` -make docker-build +make build ``` -then run your built flagd image +then run the flagd binary ``` -docker run -p 8013:8013 -v $PWD/test-harness/testing-flags.json:/testing-flags.json ghcr.io/open-feature/flagd:latest start -f file:/testing-flags.json +./flagd start -f file:test-harness/testing-flags.json ``` and finally run ``` make integration-test ``` - -Note: Testing against the flagd binary directly (rather than the docker image) is [currently](https://github.com/open-feature/flagd/issues/313) unstable (dependent on host's OS).