forked from open-feature/flagd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add provider to the documentation (open-feature#1027)
## This PR - adds a section on the install page that lists the available providers - includes the readmes of the available providers ### How to test - Install: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/installation/ - Overview Page: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/providers/ - Go: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/providers/go/ - Java: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/providers/java/ - Node.JS: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/providers/nodejs/ - PHP: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/providers/php/ - .NET: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/providers/dotnet/ - Web: https://deploy-preview-1027--polite-licorice-3db33c.netlify.app/providers/web/ --------- Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
- Loading branch information
Showing
17 changed files
with
495 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ go.work | |
go.work.sum | ||
bin/ | ||
node_modules/ | ||
.venv | ||
|
||
# built documentation | ||
site | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FROM squidfunk/mkdocs-material:9.5 | ||
RUN pip install mkdocs-include-markdown-plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# .NET provider | ||
|
||
## Installation | ||
|
||
{% | ||
include "https://raw.githubusercontent.com/open-feature/dotnet-sdk-contrib/main/src/OpenFeature.Contrib.Providers.Flagd/README.md" | ||
start="## Install dependencies" | ||
%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Go provider | ||
|
||
## Installation | ||
|
||
{% | ||
include "https://raw.githubusercontent.com/open-feature/go-sdk-contrib/main/providers/flagd/README.md" | ||
start="## Installation" | ||
end="## License" | ||
%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
title: OpenFeature Providers | ||
description: Overview of the available flagd providers compatible with OpenFeature. | ||
--- | ||
|
||
flagd was built from the ground up to be [Openfeature-compliant](../concepts/feature-flagging.md#openfeature-compliance). | ||
To use it in your application, you must use the [OpenFeature SDK](https://openfeature.dev/docs/reference/technologies/) for your language, along with the associated OpenFeature _provider_. | ||
For more information about Openfeature providers, see the [OpenFeature documentation](https://openfeature.dev/docs/reference/concepts/provider). | ||
|
||
## Providers | ||
|
||
Providers for flagd come in two flavors: those that are built to communicate with a flagd instance (over HTTP or gRPC) and those that embed flagd's evaluation engine directly (note that some providers are capable of operating in either mode). For more information on how to deploy and use flagd, see [architecture](../architecture.md) and [installation](../installation.md). | ||
|
||
The following table lists all the available flagd providers. | ||
|
||
| Technology | RPC | in-process | | ||
| ------------------------------------------------------------- | ---------------- | ---------------- | | ||
| :fontawesome-brands-golang: [Go](./go.md) | :material-check: | :material-check: | | ||
| :fontawesome-brands-java: [Java](./java.md) | :material-check: | :material-check: | | ||
| :fontawesome-brands-node-js: [Node.JS](./nodejs.md) | :material-check: | :material-check: | | ||
| :simple-php: [PHP](./php.md) | :material-check: | :material-close: | | ||
| :simple-dotnet: [.NET](./dotnet.md) | :material-check: | :material-close: | | ||
| :material-web: [Web](./web.md) | :material-check: | :material-close: | | ||
|
||
For information on implementing a flagd provider, see the specifications for [RPC](../reference/specifications/rpc-providers.md) and [in-process](../reference/specifications/in-process-providers.md) providers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Java provider | ||
|
||
## Installation | ||
|
||
{% | ||
include "https://raw.githubusercontent.com/open-feature/java-sdk-contrib/main/providers/flagd/README.md" | ||
start="## Installation" | ||
%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Node.js provider | ||
|
||
## Installation | ||
|
||
{% | ||
include "https://raw.githubusercontent.com/open-feature/js-sdk-contrib/main/libs/providers/flagd/README.md" | ||
start="## Installation" | ||
end="## Building" | ||
%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# PHP provider | ||
|
||
## Installation | ||
|
||
{% | ||
include "https://raw.githubusercontent.com/open-feature/php-sdk-contrib/main/providers/Flagd/README.md" | ||
start="## Installation" | ||
%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
# Web provider | ||
|
||
## Installation | ||
|
||
{% | ||
include "https://raw.githubusercontent.com/open-feature/js-sdk-contrib/main/libs/providers/flagd-web/README.md" | ||
start="## Installation" | ||
end="## Building" | ||
%} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.