Skip to content

Commit

Permalink
add system config docs to nav + minor UI update (#1164)
Browse files Browse the repository at this point in the history
* add system config docs to nav

* add more useful links to docs

* mke text selectable for slack debug log
  • Loading branch information
IrinaSouth authored Jul 13, 2024
1 parent 1df2227 commit dc5833f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class TrackEventItemWidget extends StatelessWidget {
children: [
Row(
children: [
Text(
SelectableText(
'Unacknowledged request sent at ${event.whenSent.toLocal()}')
],
),
Expand All @@ -179,7 +179,7 @@ class TrackEventItemWidget extends StatelessWidget {
children: [
Row(
children: [
Text(
SelectableText(
'Status: ${_decodeStatus(response.status)}, received at ${response.whenReceived.toLocal()}')
],
),
Expand All @@ -198,7 +198,7 @@ class TrackEventItemWidget extends StatelessWidget {
children: [
Row(
children: [
Text(
SelectableText(
'${_decodeStatus(response.status)} received at ${response.whenReceived.toLocal()}'),
],
),
Expand All @@ -209,7 +209,7 @@ class TrackEventItemWidget extends StatelessWidget {
Column(
children: [
for (var header in headers.keys)
Text("$header: ${headers[header]}")
SelectableText("$header: ${headers[header]}")
],
)
],
Expand All @@ -218,7 +218,7 @@ class TrackEventItemWidget extends StatelessWidget {
Row(
children: [
const Text('Content'),
Text("${response.message}")
SelectableText("${response.message}")
],
)
],
Expand Down
1 change: 1 addition & 0 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
** xref:service-accounts.adoc[Service Accounts & API Keys]
** xref:users.adoc[Users & User Groups Permissions]
** xref:app_setup_helper.adoc[Quick Setup Helper]
** xref:system-configuration.adoc[System Configuration]
* FeatureHub Management Via an API
** xref:admin-service-accounts.adoc[Admin Service Accounts]
Expand Down
20 changes: 18 additions & 2 deletions docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ FeatureHub comes as a self-hosted Open Source platform, so you can run it on you
can join today and get 30 days free trial https://app.featurehub.io/[here].

FeatureHub can be used in small teams or large enterprises with many applications, environments and users.
It has an enterprise grade security and permission model that is intuitive and easy to use.
It has an enterprise grade security and permission model that is intuitive and easy to use.

This documentation covers both Open Source and SaaS platforms.

== SaaS Documentation
https://docs.featurehub.io/featurehub/latest/hosted/architecture.html[SaaS Architecture]

https://docs.featurehub.io/featurehub/latest/hosted/pricing.html[SaaS Pricing & Billing]

Expand All @@ -32,7 +33,7 @@ link:https://github.com/featurehub-io/featurehub-helm[Deploying on Kubernetes wi

xref:identity.adoc[Identity Management]

== SDKs
== SDKs

xref:sdks.adoc#_sdk_usage[SDKs documentation and examples links]

Expand All @@ -47,6 +48,10 @@ xref:api-definition.adoc[Admin SDK API Definition]
xref:admin-development-kit.adoc[Admin SDK API Documentation and Usage]

== Tutorials
https://www.youtube.com/watch?v=0_e0-WvtaZc[YouTube demo - Adding application, environments and setting up a feature of "String" type]

https://www.youtube.com/watch?v=hooUGxpLVLk[YouTube demo - Create Service Accounts and API Keys to connect with SDKs]

https://irinasouthwell-220.medium.com/introducing-featurehub-open-source-feature-flag-management-and-experimentation-platform-f6dba7418dc5[FeatureHub Quick Setup with JavaScript SDK example]

https://www.featurehub.io/post/how-to-use-targeting-rule-with-python[How to Use Targeting by Country Rule and Implementation Code with Python FeatureHub SDK]
Expand All @@ -68,6 +73,17 @@ https://www.featurehub.io/post/building-for-resilience-with-featurehub[Building

https://www.featurehub.io/post/featurehub-introducing-feature-groups-in-release-1-7-0[FeatureHub Introducing Feature Groups]

== Mentions in blogs and articles
https://www.infracloud.io/blogs/feature-flag-tools-to-confidently-release-new-features/[Infracloud blog - 10 Feature Flag Tools to Confidently Release New Features]

https://posthog.com/blog/best-open-source-feature-flag-tools[Posthog blog - The 8 best free and open-source feature flag services]

https://www.featbit.co/blogs/What-Are-the-Best-Open-Source-Feature-Flags-Tools-Available-in-2023[FeatBit blog - What Are the Best Open Source Feature Flags Tools Available in 2023?]

https://medevel.com/a-b-testing-150/[Medevel.com - 15 Essential A/B Testing and Feature Flagging Tools for Seamless Development Progress]

https://www.dev-insider.de/9-freie-feature-flag-plattformen-a-817eafcea08feeb6f84480f6a7e1ab2a/[Dev-insider.de - 9 free feature flag platforms]


== FeatureHub Support & Help
Please use one of the "Contact Us" options https://www.featurehub.io/contact-us[here]
Expand Down

0 comments on commit dc5833f

Please sign in to comment.