Skip to content

Commit 90c0be4

Browse files
authored
docs: add python, update .net provider docs (#1305)
## This PR - fixes an invalid link - adds python provider page - update .NET provider to include in-process --------- Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
1 parent 9714215 commit 90c0be4

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

docs/concepts/syncs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ flagd can connect to one or more sync sources.
1010
The file path sync provider reads and watch the source file for updates(ex: changes and deletions).
1111
It's important to note that most file operations result in multiple file system events.
1212
For production use-cases, a symbolic link is recommended for the watched file, which enables atomic modification.
13-
See the [relevant troubleshooting entry](../../troubleshooting/#extra-duplicate-events-in-file-syncs).
13+
See the [relevant troubleshooting entry](../troubleshooting.md#extra-duplicate-events-in-file-syncs).
1414

1515
```shell
1616
flagd start --uri file:etc/featureflags.json

docs/providers/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ The following table lists all the available flagd providers.
1919
| :fontawesome-brands-java: [Java](./java.md) | :material-check: | :material-check: |
2020
| :fontawesome-brands-node-js: [Node.JS](./nodejs.md) | :material-check: | :material-check: |
2121
| :simple-php: [PHP](./php.md) | :material-check: | :material-close: |
22-
| :simple-dotnet: [.NET](./dotnet.md) | :material-check: | :material-close: |
22+
| :simple-dotnet: [.NET](./dotnet.md) | :material-check: | :material-check: |
23+
| :simple-python: [Python](./python.md) | :material-check: | :material-close: |
2324
| :material-web: [Web](./web.md) | :material-check: | :material-close: |
2425

2526
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.

docs/providers/python.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Python provider
2+
3+
## Installation
4+
5+
{%
6+
include "https://raw.githubusercontent.com/open-feature/python-sdk-contrib/main/providers/openfeature-provider-flagd/README.md"
7+
start="## Installation"
8+
%}

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ nav:
8181
- 'Node.JS': 'providers/nodejs.md'
8282
- 'PHP': 'providers/php.md'
8383
- '.NET': 'providers/dotnet.md'
84+
- 'Python': 'providers/python.md'
8485
- 'Web': 'providers/web.md'
8586
- 'Reference':
8687
- 'CLI':

0 commit comments

Comments
 (0)