Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sdks/client-sdks/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ If you install via a `<script>` tag, include a version in the URL to install a s

## 2. Initialize the SDK

Initialize the SDK with a SDK key, which can be generated in the Eppo interface:
Initialize the SDK with a SDK key, which can be generated in the [flags configuration interface](https://eppo.cloud/feature-flags/keys):

```javascript
import { init } from "@eppo/js-client-sdk";
Expand Down
2 changes: 1 addition & 1 deletion docs/sdks/client-sdks/react-native.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ npm install @eppo/react-native-sdk

## 2. Initialize the SDK

Initialize the SDK with a SDK key, which can be generated in the Eppo interface:
Initialize the SDK with a SDK key, which can be generated in the [flags configuration interface](https://eppo.cloud/feature-flags/keys):

```javascript
import { init } from "@eppo/react-native-sdk";
Expand Down
2 changes: 1 addition & 1 deletion docs/sdks/server-sdks/dotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dotnet add package Eppo.Sdk

## 2. Initialize the SDK

Initialize the SDK with a SDK key, which can be generated in the Eppo interface. Initialization should happen when your application starts up to generate a singleton client instance, once per application lifecycle:
Initialize the SDK with a SDK key, which can be generated in the [flags configuration interface](https://eppo.cloud/feature-flags/keys). Initialization should happen when your application starts up to generate a singleton client instance, once per application lifecycle:

Then use that to create the EppoClient instance.

Expand Down
2 changes: 1 addition & 1 deletion docs/sdks/server-sdks/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ go get github.com/Eppo-exp/golang-sdk/v3

## 2. Initialize the SDK

Initialize the SDK with a SDK key, which can be generated in the Eppo interface. Initialization should happen when your application starts up to generate a singleton client instance, once per application lifecycle:
Initialize the SDK with a SDK key, which can be generated in the [flags configuration interface](https://eppo.cloud/feature-flags/keys). Initialization should happen when your application starts up to generate a singleton client instance, once per application lifecycle:

```go

Expand Down
2 changes: 1 addition & 1 deletion docs/sdks/server-sdks/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ composer require eppo/php-sdk

## 2. Initialize the SDK

Initialize the SDK with a SDK key, which can be generated in the Eppo interface. Initialization should happen when your application starts up to generate a singleton client instance, once per application lifecycle:
Initialize the SDK with a SDK key, which can be generated in the [flags configuration interface](https://eppo.cloud/feature-flags/keys). Initialization should happen when your application starts up to generate a singleton client instance, once per application lifecycle:

```php
use Eppo\EppoClient;
Expand Down
3 changes: 1 addition & 2 deletions docs/sdks/server-sdks/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ client = eppo_client.get_instance()
```

This generates a singleton client instance that can be reused throughout the application lifecycle
This generates a singleton client instance that can be reused throughout the application lifecycle.

### C. Assign variations

Expand All @@ -57,7 +57,6 @@ Here's how this configuration looks in the [flag page](https://eppo.cloud/featur

![Test checkout configuration](/img/feature-flagging/test-checkout-configuration.png)


That’s it: You can already start changing the feature flag on the page and see how it controls your code!

However, if you want to run experiments, there’s a little extra work to configure it properly.
Expand Down
243 changes: 189 additions & 54 deletions docs/sdks/server-sdks/ruby.md

Large diffs are not rendered by default.