// deploy with confidence

Deploy features without breaking production

Git-native feature flags that eliminate deployment fear. Toggle features through an intuitive UI while every change becomes a reviewable Git commit.v2

Free 14-day Pro trial • No credit card required

Pull Request #142

feature/checkout-rolloutmain

Open

opened by flipt-bot · just now

flags/checkout.yml
-enabled: false
+enabled: true
+rollout:
+ percentage: 30
+ segment: beta-users
0/2
·
CI running
Merge pull request

Trusted by engineering teams at

Nvidia
Cisco
Trunk Tech
Rokt
Onna
Paradigm
Allocate
Stone
Alvin
Ocrolus

The feature flag platform that works like you do

Built for developers who want safety without complexity. Git workflows you already know, UI that doesn't suck, pricing that doesn't punish growth.

UI changes become Git commits

Make changes in the UI, get Git commits automatically. Toggle flags through our intuitive interface and watch as every change becomes a reviewable commit.

Learn more

Instant rollouts, instant rollbacks

When production breaks, every second counts. Streaming support means flag changes take effect in milliseconds, not minutes. No polling, no delays, no outages.

Learn more

Scale without the billing shock

Fair and simple pricing with no limits. No per-seat pricing that punishes team growth. No flag limits that force hard choices. Build for your users, not your vendor's revenue model.

Learn more

Self-host with zero hassle

One binary. Zero dependencies. Users consistently call Flipt the easiest feature flag platform to get up and running.

Learn more
PRO

Flag changes through Git PRs

Make your changes, click to create a PR, and your team reviews it in Git. No copy-paste, no context switching. Works with GitHub, GitLab, BitBucket, and Azure DevOps.

Learn about Pro
PRO

Stop leaking secrets in config files

Your API keys and sensitive config belong in a vault, not scattered across YAML files. Built-in secrets integrations keep your credentials secure.

Learn about Pro

Works with your Git workflow

No new tools to learn. Your team already knows Git. Now they can manage feature flags the same way they manage code: with pull requests, code reviews, and merge confidence.

GitHub

GitHub & GitHub Enterprise

GitLab

GitLab Hosted & Self-Managed

BitBucket

BitBucket Cloud & Server

Azure DevOps

Azure DevOps Services & Server

View SCM Integration Guide
// integrations

Drop into any codebase in minutes

Native SDKs for every major language. No complex setup, no architectural changes required.

more
main.go
package main

import (
  "context"
  "fmt"
  "log"
  "time"
  flipt "go.flipt.io/flipt-client"
)

func main() {
  ctx := context.Background()
  client, err := flipt.NewClient(
    ctx,
    flipt.WithURL("http://localhost:8080"),
    flipt.WithUpdateInterval(2 * time.Minute),
  )
  if err != nil {
    log.Fatal(err)
  }
  defer client.Close(ctx)

  variantResult, err := client.EvaluateVariant(ctx, &flipt.EvaluationRequest{
    FlagKey:  "new-feature",
    EntityID: "user-123",
    Context:  map[string]string{"environment": "production"},
  })
  if err != nil {
    log.Fatal(err)
  }
  fmt.Println(variantResult)
}

Choose your integration style

Server-side for simplicity, client-side for extreme performance, or gRPC for service-to-service communication.

Server Side SDKs

REST APIs

Native libraries to evaluate flags against the Flipt server

Client Side SDKs

Frontend, Backend, and Mobile

Evaluate flags within your own applications for extreme performance and low latency

gRPC APIs

High Performance

High-performance, type-safe communication protocol designed for service-to-service communication

OpenFeature

Industry Standard

Vendor-neutral, cloud-native feature flag standard

How engineering teams eliminated deployment fear

From startups to unicorns, engineering teams choose Flipt when deployment anxiety needs to become deployment confidence.

Flipt empowers us to achieve these by being co-located within our infrastructure. Flipt offers a straightforward yet robust flagging solution, streamlining the development of our new features and ensuring their successful rollout.

Michael Hintz

Michael Hintz

Senior Engineer · Paradigm

Flipt has allowed Rokt to dynamically turn on features, enable bulkheads for failure recovery, test experiments in production, and maintain low latency and high availability throughout the course of operations.

Dan Piet

Dan Piet

Platform Engineer · Rokt

Flipt has allowed us to control every aspect of our product with a fine tooth comb, ensuring that features experiencing issues are properly handled, or features that need a timed rollout are done so with precision.

Connor Wright

Connor Wright

Lead Developer · AsphaltBot

Flipt is a performance-focused and self-hostable feature flag platform with an intuitive flag model that's flexible enough to support multiple feature-management use cases across Allocate's stack. As a startup, it was an easy choice compared to the other vendor offerings out there and their dev team has been a joy to collaborate with.

Jeremy Caron

Jeremy Caron

CTO · Allocate

Flipt is clearly developed according to very high engineering standards. Great docs, clear APIs, easy setup, removes roadblocks without creating new ones. They also have been very receptive to suggestions and code contributions.

Paul Grau

Paul Grau

Software Architect · Alvin

Flipt is such a perfect representation of how feature flags should work. No question. Flipt is the way to go. As soon as I get people bought in, and understanding the idea, they freaking love it.

Jameel Al-Aziz

Jameel Al-Aziz

DevOps Engineer · Bastion

Pricing that won't punish your success

Flat-rate pricing that grows with your impact, not your payroll. No per-seat penalties when you hire that brilliant engineer. Build for your users, not your vendor's revenue model.

Billing cycle

Open Source

Free/ forever

Everything you need to deploy feature flags safely. Forever free

  • Unlimited feature flags
  • Git-native workflows
  • Intuitive UI with Git sync
  • Real-time updates
  • REST & gRPC APIs
  • Community support

Flipt Pro

Most Popular

$100/ month

For teams ready to eliminate deployment anxiety

  • Everything in Open Source
  • GitHub/GitLab/BitBucket/Azure DevOps integration
  • Create pull requests from UI
  • GPG signed commits
  • Integrated secrets management
  • Dedicated Slack channel
  • 🎯 14-day free trial included

Enterprise

Custom/ contact

For organizations where downtime isn't an option

  • Everything in Flipt Pro
  • Advanced RBAC
  • Audit logging
  • Dedicated support
  • Custom integrations

Developer FAQ

Common questions from engineering teams evaluating Flipt

Three reasons: ownership, cost, and workflow. Users consistently tell us Flipt is the easiest feature flag platform to get up and running, with fair and simple pricing that doesn't punish team growth, and both intuitive UI and Git-native workflows. Make changes in a UI that developers actually enjoy, while every change becomes a reviewable Git commit. No more context switching between tools or explaining to executives why your feature flag bill is bigger than your AWS spend.

Still have questions?

Read the docsAsk in Discord

Built on Open Source

We're grateful for the contributors who continuously improve Flipt.

GYRJOPTPAIDRJDK
Contribute on GitHub

// ready when you are

Your next deploy doesn't have to be scary

Deploy with confidence, not crossed fingers. Start your 14-day Pro trial and eliminate deployment anxiety. No credit card required, just safer releases from day one.

$ curl -fsSL https://get.flipt.io/v2 | sh