Skip to content
Closed
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
1 change: 0 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
16 changes: 15 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,18 @@ const withNextra = require('nextra')({
themeConfig: './theme.config.tsx',
})

module.exports = withNextra()
module.exports = withNextra({
async headers() {
return [
{
source: '/:path*',
headers: [
{
key: 'Strict-Transport-Security',
value: 'max-age=31536000; includeSubDomains; preload',
},
],
},
]
},
})
62 changes: 62 additions & 0 deletions public/llms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# FeatBit Documentation

FeatBit documentation covers setup, SDK integration, APIs, feature flag operations, experimentation, identity, observability, webhooks, and self-hosted deployment.

Core documentation:
- https://docs.featbit.co/
- https://docs.featbit.co/getting-started/create-two-feature-flags
- https://docs.featbit.co/getting-started/connect-an-sdk
- https://docs.featbit.co/getting-started/how-to-guides/targeted-progressive-delivery
- https://docs.featbit.co/getting-started/how-to-guides/ab-testing

SDK and API:
- https://docs.featbit.co/sdk/overview
- https://docs.featbit.co/sdk/faq
- https://docs.featbit.co/sdk/retrieve-feature-flags
- https://docs.featbit.co/api-docs/overview
- https://docs.featbit.co/api-docs/using-featbit-rest-api
- https://docs.featbit.co/api-docs/flag-evaluation-api
- https://docs.featbit.co/api-docs/track-insights-api

SDK source repositories:
- https://github.com/featbit/featbit-js-client-sdk
- https://github.com/featbit/featbit-react-client-sdk
- https://github.com/featbit/featbit-react-native-sdk
- https://github.com/featbit/featbit-node-server-sdk
- https://github.com/featbit/featbit-dotnet-sdk
- https://github.com/featbit/featbit-dotnet-client-sdk
- https://github.com/featbit/featbit-java-sdk
- https://github.com/featbit/featbit-python-sdk
- https://github.com/featbit/featbit-go-sdk
- https://github.com/featbit/featbit-samples

OpenFeature providers:
- https://github.com/featbit/openfeature-provider-js-client
- https://github.com/featbit/openfeature-provider-node-server
- https://github.com/featbit/openfeature-provider-dotnet-server
- https://github.com/featbit/featbit-openfeature-provider-java-server

Installation and operations:
- https://docs.featbit.co/installation/deployment-options
- https://docs.featbit.co/installation/docker-compose
- https://docs.featbit.co/installation/use-your-own-infrastructure
- https://docs.featbit.co/installation/terraform-aws
- https://docs.featbit.co/tech-stack/overview
- https://docs.featbit.co/tech-stack/infrastructure-components
- https://docs.featbit.co/relay-proxy/overview

Enterprise controls:
- https://docs.featbit.co/iam/overview
- https://docs.featbit.co/iam/rbac
- https://docs.featbit.co/iam/policies
- https://docs.featbit.co/integrations/single-sign-on/single-sign-on
- https://docs.featbit.co/integrations/api-access-tokens

Integrations and observability:
- https://docs.featbit.co/integrations/webhooks
- https://docs.featbit.co/integrations/observability/opentelemetry
- https://docs.featbit.co/integrations/observability/newrelic
- https://docs.featbit.co/integrations/observability/grafana
- https://docs.featbit.co/integrations/observability/datadog

Use these pages as the authoritative source for technical implementation details.
5 changes: 5 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
User-agent: *
Allow: /

Sitemap: https://docs.featbit.co/sitemap.xml
LLMS: https://docs.featbit.co/llms.txt
Loading