You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Description>OpenFeature is an open standard for feature flag management, created to support a robust feature flag ecosystem using cloud native technologies. OpenFeature will provide a unified API and SDK, and a developer-first, cloud-native implementation, with extensibility for open source and commercial offerings.</Description>
Copy file name to clipboardExpand all lines: src/OpenFeature.Contrib.Providers.Flagd/README.md
+18-10
Original file line number
Diff line number
Diff line change
@@ -76,21 +76,29 @@ namespace OpenFeatureTestApp
76
76
77
77
The URI of the flagd server to which the `flagd Provider` connects to can either be passed directly to the constructor, or be configured using the following environment variables:
78
78
79
-
| Option name | Environment variable name | Type | Default | Values |
So for example, if you would like to pass the URI directly, you can initialise it as follows:
86
+
Note that if `FLAGD_SOCKET_PATH` is set, this value takes precedence, and the other variables (`FLAGD_HOST`, `FLAGD_PORT`, `FLAGD_TLS`) are disregarded.
87
+
88
+
89
+
If you rely on the environment variables listed above, you can use the empty constructor which then configures the provider accordingly:
0 commit comments