Skip to content

Commit 6d35e2d

Browse files
committed
merge: main
2 parents 07759c5 + cc169ff commit 6d35e2d

File tree

16 files changed

+181
-21
lines changed

16 files changed

+181
-21
lines changed

docs/how-to/deploy/deployment-docker-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ Deploy independently on Linux/Unix using the [docker image](https://hub.docker.c
4949

5050
```bash
5151
docker run -e FP_SERVER_PORT=4007 -e \
52-
FP_TOGGLES_URL=http://backendAPI:4008/api/server/toggles \
53-
FP_EVENTS_URL=http://backendAPI:4008/api/server/events \
54-
FP_KEYS_URL=http://backendAPI:4008/api/server/sdk_keys \
52+
FP_TOGGLES_URL=http://backendAPI:4008/internal/server/toggles \
53+
FP_EVENTS_URL=http://backendAPI:4008/internal/server/events \
54+
FP_KEYS_URL=http://backendAPI:4008/internal/server/sdk_keys \
5555
--network featureProbeNet --name serverAPI -d featureprobe/server
5656
```
5757

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Client-Side SDKs/android-sdk.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ sidebar_position: 2
44

55
# Android SDK
66

7+
:::note SDK quick links
8+
除了本参考指南外,我们还提供源代码、示例应用程序,相关链接如下所示:
9+
10+
| **Resource** | **Location** |
11+
| ------------- | ------------------------------------------------------------ |
12+
| GitHub 代码库 | [Client Side SDK for Android](https://github.com/FeatureProbe/client-sdk-mobile/tree/main/sdk-android) |
13+
| 接入示例 | [Demo code](https://github.com/FeatureProbe/client-sdk-mobile/tree/main/examples/demo-android) (Kotlin) |
14+
| 已发布模块 | [maven](https://mvnrepository.com/artifact/com.featureprobe/client-sdk-android) |
15+
16+
:::
17+
718
## Kotlin
819

920
### 步骤 1. 安装 SDK

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Client-Side SDKs/ios-sdk.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ sidebar_position: 3
66

77
## iOS Usage
88

9+
:::note SDK quick links
10+
除了本参考指南外,我们还提供源代码、示例应用程序,相关链接如下所示:
11+
12+
| **Resource** | **Location** |
13+
| ------------- | ------------------------------------------------------------ |
14+
| GitHub 代码库 | [Client Side SDK for iOS](https://github.com/FeatureProbe/client-sdk-mobile/tree/main/sdk-ios) |
15+
| 接入示例 | [demo-cocoapods](https://github.com/FeatureProbe/client-sdk-mobile/tree/main/examples/demo-cocoapods)[demo-objc](https://github.com/FeatureProbe/client-sdk-mobile/tree/main/examples/demo-objc)[demo-swiftpm](https://github.com/FeatureProbe/client-sdk-mobile/tree/main/examples/demo-swiftpm) |
16+
| 已发布模块 | [CocoaPods](https://cocoapods.org/pods/FeatureProbe) |
17+
18+
:::
19+
920
### Swift
1021

1122
#### Step 1. 安装 SDK

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Client-Side SDKs/javascript-sdk.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ sidebar_position: 1
44

55
# JavaScript SDK
66

7+
本文介绍如何在一个前端项目中使用 FeatureProbe SDK。
8+
9+
:::note SDK quick links
10+
除了本参考指南外,我们还提供源代码、API 参考文档和示例应用程序,相关链接如下所示:
11+
12+
| **Resource** | **Location** |
13+
| ------------- | ------------------------------------------------------------ |
14+
| SDK API 文档 | [ SDK API docs](https://featureprobe.github.io/client-sdk-js/) |
15+
| GitHub 代码库 | [Client Side SDK for JavaScript](https://github.com/FeatureProbe/client-sdk-js) |
16+
| 接入示例 | [Demo code](https://github.com/FeatureProbe/client-sdk-js/blob/main/example/index.html) (HTML+JS) |
17+
| 已发布模块 | [npm](https://www.npmjs.com/package/featureprobe-client-sdk-js) |
18+
19+
:::
20+
721
## 快速尝试 Demo Code
822

923
我们提供了一个可运行的演示代码,让您了解如何使用 FeatureProbe SDK

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Client-Side SDKs/minirprogram-sdk.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ sidebar_position: 4
88
此SDK仅适用于微信小程序,其他小程序包括:支付宝、百度、钉钉、今日头条正在准备中。
99
:::
1010

11+
:::note SDK quick links
12+
除了本参考指南外,我们还提供源代码、API 参考文档和示例应用程序,相关链接如下所示:
13+
14+
| **Resource** | **Location** |
15+
| ------------- | ------------------------------------------------------------ |
16+
| SDK API 文档 | [ SDK API docs](https://featureprobe.github.io/client-sdk-miniprogram/) |
17+
| GitHub 代码库 | [Client Side SDK for MiniProgram](https://github.com/FeatureProbe/client-sdk-miniprogram) |
18+
| 接入示例 | [Demo code](https://github.com/FeatureProbe/client-sdk-miniprogram/tree/main/example) |
19+
| 已发布模块 | [npm](https://www.npmjs.com/package/featureprobe-client-sdk-miniprogram) |
20+
21+
:::
22+
1123
## 快速尝试 Demo Code
1224

1325
我们提供了一个可运行的演示代码,让您了解如何使用 FeatureProbe SDK。

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Client-Side SDKs/react-sdk.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ sidebar_position: 5
88
React SDK是在 JavaScript SDK的基础上进行的封装,主要为了提升在React项目中的使用体验。JavaScript SDK中的大部分方法在React SDK中也同样适用,详见[JavaScript SDK](./javascript-sdk.md)
99
:::
1010

11+
:::note SDK quick links
12+
除了本参考指南外,我们还提供源代码、API 参考文档和示例应用程序,相关链接如下所示:
13+
14+
| **Resource** | **Location** |
15+
| ------------- | ------------------------------------------------------------ |
16+
| SDK API 文档 | [ SDK API docs](https://featureprobe.github.io/client-sdk-react/) |
17+
| GitHub 代码库 | [Client Side SDK for React](https://github.com/FeatureProbe/client-sdk-react) |
18+
| 接入示例 | [Demo code](https://github.com/FeatureProbe/client-sdk-react/tree/main/example) |
19+
| 已发布模块 | [npm](https://www.npmjs.com/package/featureprobe-client-sdk-react) |
20+
21+
:::
22+
1123
## 快速尝试 Demo Code
1224

1325
我们提供了一个可运行的演示代码,让您了解如何使用 `FeatureProbe` SDK。

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Server-Side SDKs/golang-sdk.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ sidebar_position: 3
66

77
本文介绍如何在一个 Golang 项目中使用 FeatureProbe SDK。
88

9+
:::note SDK quick links
10+
除了本参考指南外,我们还提供源代码、API 参考文档和示例应用程序,相关链接如下所示:
11+
12+
| **Resource** | **Location** |
13+
| ------------- | ------------------------------------------------------------ |
14+
| SDK API 文档 | [ SDK API docs](https://pkg.go.dev/github.com/featureprobe/server-sdk-go#section-documentation) |
15+
| GitHub 代码库 | [Server-SDK for Golang](https://github.com/FeatureProbe/server-sdk-go) |
16+
| 接入示例 | [Demo code](https://github.com/FeatureProbe/server-sdk-go/tree/main/example) |
17+
| 已发布模块 | [ pkg.go.dev](https://pkg.go.dev/github.com/featureprobe/server-sdk-go) |
18+
19+
:::
20+
21+
22+
923
:::tip
1024
对于首次使用FeatureProbe的用户,我们强烈建议你在阅读过[灰度放量教程](../../tutorials/rollout_tutorial/)之后,再回到这篇文章继续阅读。
1125
:::

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Server-Side SDKs/java-sdk.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@ sidebar_position: 1
44

55
# Java SDK
66

7-
本文介绍如何在一个 Java 项目中使用FeatureProbe SDK。
7+
本文介绍如何在一个 Java 项目中使用 FeatureProbe SDK。
8+
9+
:::note SDK quick links
10+
除了本参考指南外,我们还提供源代码、API 参考文档和示例应用程序,相关链接如下所示:
11+
12+
| **Resource** | **Location** |
13+
| --------------------------------------- | ----------------- |
14+
| SDK API 文档 | [ SDK API docs](https://featureprobe.github.io/server-sdk-java/) |
15+
| GitHub 代码库 | [Server-SDK for Java](https://github.com/FeatureProbe/server-sdk-java) |
16+
| 接入示例 | [FeatureProbeDemo](https://github.com/FeatureProbe/server-sdk-java/blob/main/src/main/java/com/featureprobe/sdk/example/FeatureProbeDemo.java) (Java) |
17+
|已发布模块|[Maven](https://mvnrepository.com/artifact/com.featureprobe/server-sdk-java)|
18+
19+
:::
20+
21+
822

923
:::tip
1024
对于首次使用FeatureProbe的用户,我们强烈建议你在阅读过[灰度放量教程](../../tutorials/rollout_tutorial/)之后,再回到这篇文章继续阅读。

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Server-Side SDKs/node-sdk.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ sidebar_position: 4
66

77
本文介绍如何在一个 Node.js 项目中使用 FeatureProbe SDK。
88

9+
:::note SDK quick links
10+
除了本参考指南外,我们还提供源代码、API 参考文档和示例应用程序,相关链接如下所示:
11+
12+
| **Resource** | **Location** |
13+
| ------------- | ------------------------------------------------------------ |
14+
| SDK API 文档 | [ SDK API docs](https://featureprobe.github.io/server-sdk-node/) |
15+
| GitHub 代码库 | [Server-SDK for Node.js](https://github.com/FeatureProbe/server-sdk-node) |
16+
| 接入示例 | [Demo code](https://github.com/FeatureProbe/server-sdk-node/blob/main/example/demo.js) (TypeScript) |
17+
| 已发布模块 | [ npm](https://www.npmjs.com/package/featureprobe-server-sdk-node) |
18+
19+
:::
20+
21+
22+
923
:::tip
1024
对于首次使用 FeatureProbe 的用户,我们强烈建议你在阅读过[灰度放量教程](../../tutorials/rollout_tutorial/)之后,再回到这篇文章继续阅读。
1125
:::

i18n/zh-CN/docusaurus-plugin-content-docs/current/how-to/Server-Side SDKs/python-sdk.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ sidebar_position: 5
66

77
本文介绍如何在一个 Python 项目中使用 FeatureProbe SDK。
88

9+
:::note SDK quick links
10+
除了本参考指南外,我们还提供源代码、API 参考文档和示例应用程序,相关链接如下所示:
11+
12+
| **Resource** | **Location** |
13+
| ------------- | ------------------------------------------------------------ |
14+
| SDK API 文档 | [ SDK API docs](https://test-fp-server-py.readthedocs.io/en/latest/api.html) |
15+
| GitHub 代码库 | [Server-SDK for Python](https://github.com/FeatureProbe/server-sdk-python) |
16+
| 接入示例 | [Demo code](https://github.com/FeatureProbe/server-sdk-python/blob/main/demo.py) |
17+
| 已发布模块 | [ PyPI](https://pypi.org/project/featureprobe-server-sdk-python/) |
18+
19+
:::
20+
21+
22+
923
:::tip
1024
对于首次使用FeatureProbe的用户,我们强烈建议你在阅读过[灰度放量教程](../../tutorials/rollout_tutorial/)之后,再回到这篇文章继续阅读。
1125
:::

0 commit comments

Comments
 (0)