-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Thomas Poignant <[email protected]>
- Loading branch information
1 parent
1c1d7f5
commit 3442c4e
Showing
1 changed file
with
25 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# GO Feature Flag Examples | ||
|
||
## Overview | ||
GO Feature Flag offers a multitude of usage pathways, adaptable to your intended purposes. | ||
|
||
On this page, we will highlight the various utilization methods, aiming to assist you in getting started. Our objective is to enhance your feature flagging experience and make it more seamless for you. | ||
|
||
## Complete demo | ||
- [**demo**](./demo) - A GO application serving a webpage using GO Feature Flag module and demonstrating how you can manage multiple users in the same application. | ||
|
||
## Use GO Feature Flag server | ||
- [**Deploy GO Feature Flag as an AWS Lambda**](./rollout_experimentation) - An example configuration on how to run GO Feature Flag as a serverless application using AWS Lambda. | ||
|
||
## Code snippet using the GO Module | ||
- [**Retrieve config from Kubernetes**](./retriever_configmap) - A small set up with a test application that explain how to retrieve your configuration from a **configMap** in Kubernetes. | ||
- [**Retrieve config from a file**](./retriever_file) - A code snippet to see how to retrieve your configuration from a local file. | ||
- [**Retrieve config from GitHub**](./retriever_file) - A code snippet to see how to retrieve your configuration from GitHub. | ||
- [**Retrieve config from an HTTP endpoint**](./retriever_file) - A code snippet to see how to retrieve your configuration from any HTTP endpoint. | ||
- [**Use multiple configuration file**](./retriever_file) - A code snippet to see how to use multiple configuration file. | ||
- [**Export data to a file**](./data_export_file) - A code snippet to see how to export the usage of your flags in a file. | ||
- [**Export data to AWS S3**](./data_export_s3) - A code snippet to see how to export the usage of your flags in AWS S3. | ||
- [**Export data to Google Cloud Storage**](./data_export_googlecloudstorage) - A code snippet to see how to export the usage of your flags in Google Cloud Storage. | ||
- [**Rollout an experimentation**](./rollout_experimentation) - A code snippet to see how to configure an experimentation. | ||
- [**Progressive Rollout**](./rollout_progressive) - A code snippet to see how to configure a flag that will progressively apply to more users. | ||
- [**Scheduled Rollout**](./rollout_scheduled) - A code snippet to see how to configure a flag that change over time. |