{"repo":"Unleash/unleash","free":true,"listed":false,"github":"https://github.com/Unleash/unleash","clone":"git clone https://github.com/Unleash/unleash.git","description":"Open-source feature management platform","language":"TypeScript","stars":13740,"topics":["activation-strategies","collaboration","continuous-delivery","continuous-deployment","devops","devtool","experiments","feature","feature-flags","feature-toggle","feature-toggles","feature-toggling","hacktoberfest","integration","platform-engineering","sdk","toggles","unleash","variants"],"license":"AGPL-3.0","category":"devops_platform","readme_excerpt":"<div align=\"center\">\n\n<a href=\"https://getunleash.io\" title=\"Unleash - Empowering developers to release with confidence\">\n    <img src=\"./.github/github_header_opaque_landscape.svg\" alt=\"Visit the Unleash website\">\n</a>\n\n<br/>\n<br/>\n\n[![Build and Tests](https://img.shields.io/github/actions/workflow/status/Unleash/unleash/build.yaml?branch=main)](https://github.com/Unleash/unleash/actions/workflows/build.yaml) [![Coverage Report](https://img.shields.io/badge/coverage-vitest-green)](https://github.com/Unleash/unleash/actions/workflows/build_coverage.yaml) [![Docker Pulls](https://img.shields.io/docker/pulls/unleashorg/unleash-server)](https://hub.docker.com/r/unleashorg/unleash-server) [![AGPL-3.0-or-later license](https://img.shields.io/github/license/unleash/unleash)](https://github.com/Unleash/unleash/blob/main/LICENSE) [![Join Unleash on Slack](https://img.shields.io/badge/slack-join-635dc5?logo=slack)](https://slack.unleash.run)\n\n[Launch the live demo](https://www.getunleash.io/interactive-demo?utm_source=readme&utm_medium=oss&utm_content=top-cta) | [Try Unleash Enterprise for free](https://www.getunleash.io/plans/enterprise-payg?utm_source=readme&utm_medium=oss&utm_content=top-cta)\n\n</div>\n\n## What is Unleash?\n\nUnleash is a powerful open-source solution for feature management. It streamlines your development workflow, accelerates software delivery, and empowers teams to control how and when they roll out new features to end users. With Unleash, you can deploy code to production in smaller, more manageable releases at your own pace.\n\nFeature flags in Unleash let you test your code with real production data, reducing the risk of negatively impacting your users' experience. It also enables your team to work on multiple features simultaneously without the need for separate feature branches.\n\nUnleash is the most popular open-source solution for feature flagging on GitHub. It supports 15 official client and server SDKs and over 15 community SDKs. You can even create your own SDK if you wish. Unleash is compatible with any language and framework.\n\n<br/>\n\n## Get started with Unleash\n\n### Set up Unleash\n\nTo get started with Unleash, you can either explore [Unleash Enterprise](#unleash-enterprise) with a free trial or [get started locally](#unleash-open-source) with our open-source solution.\n\n#### Unleash Enterprise\n\nTo start with Unleash Enterprise, [request a free trial](https://www.getunleash.io/plans/enterprise-payg?utm_source=oss&utm_medium=readme&utm_content=unleash-enterprise-start). This gives you access to a hosted instance with unlimited projects and environments and features such as [role-based access control](https://docs.getunleash.io/concepts/rbac), [change requests](https://docs.getunleash.io/concepts/change-requests), [single sign-on](https://docs.getunleash.io/concepts/sso), and [SCIM](https://docs.getunleash.io/concepts/scim) for automatic user provisioning.\n\n#### Unleash Open Source\n\nTo set up Unleash locally, you'll need [`git`](https://git-scm.com/) and [`docker`](https://www.docker.com/) installed on your machine.\n\nExecute the following commands:\n\n```bash\ngit clone git@github.com:Unleash/unleash.git\ncd unleash\ndocker compose up -d\n```\n\nThen point your browser to `localhost:4242` and log in using:\n\n- username: `admin`\n- password: `unleash4all`\n\nIf you'd rather run the source code in this repo directly via Node.js, see the [step-by-step instructions to get up and running in the contributing guide](./contributing/CONTRIBUTING.md#how-to-run-the-project).\n\n### Connect your SDK\n\nFind your preferred SDK in [our list of official SDKs](#unleash-sdks) and import it into your project. Follow the setup guides for your specific SDK.\n\nIf you use the docker compose file from the previous step, here's the configuration details you'll need to get going:\n\n- For frontend SDKs, use:\n  - URL: `http://localhost:4242/api/frontend/`\n  - `clientKey`: `default:development.unleash-insecure-frontend-api-token`\n- For backend SDKs, use:\n  - Unleash API URL: `http://localhost:4242/api/`\n  - API token: `default:development.unleash-insecure-api-token`\n\nIf you use a different setup, your configuration details will most likely also be different.\n\n### Check a feature flag\n\nChecking the state of a feature flag in your code is easy! The syntax will vary depending on your language, but all you need is a simple function call to check whether a flag is available. Here's how it might look in Java:\n\n```java\nif (unleash.isEnabled(\"AwesomeFeature\")) {\n  // do new, flashy thing\n} else {\n  // do old, boring stuff\n}\n```\n## Try Unleash in the cloud\n\nWant to explore Unleash without setting it up locally? Here are two easy ways to see it in action.\n\n### Live demo\nOpen a running Unleash environment in your browser with no signup or setup required. This shared demo instance includes the core functionality so you can quickly get a feel for how Unleash works.\n\n**→ [Launch the live demo](https://www.getunleash.io/interactive-demo?utm_source=readme&utm_medium=oss&utm_content=demo-section-cta)**\n\n[![Launch the live demo](./.github/github_online_demo.svg)](https://www.getunleash.io/interactive-demo?utm_source=readme&utm_medium=oss&utm_content=demo-section-cta)\n\n### Free Enterprise trial\nGet your own dedicated instance with a free 14-day cloud trial. This includes the full Unleash Enterprise feature set; ideal when evaluating Unleash for production use.  \n\n**→ [Start your free trial](https://www.getunleash.io/plans/enterprise-payg?utm_source=readme&utm_medium=oss&utm_content=demo-section-cta)**\n\n<br/>\n\n## Deploying to a production server\n\nTo self-host Unleash in a production environment, you need to deploy it to a persistent server. \n\nWe provide guides for deploying to services like Heroku and DigitalOcean:\n\n[![Deploy to Heroku](./.github/deploy-heroku-20.png)](https://www.heroku.com/deploy/?template=https://github.com/Unleash/unleash) [![Deploy to DigitalOcean](./.github/deploy-digital.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/Unleash/unleash/tree/main&refcode=0e1d75187044)\n\nFor more advanced configurations options, check out our documentation on:\n- [Getting started with self-hosting](https://docs.getunleash.io/deploy/getting-started)\n- [Unleash configuration options](https://docs.getunleash.io/deploy/configuring-unleash)\n\n<br/>\n\n## Community and help\n\nWe know that learning a new tool can be hard and time-consuming. We have a growing community that loves to help out. Please don't hesitate to reach out for help.\n\n[![Join Unleash on Slack](https://img.shields.io/badge/slack-join-635dc5?logo=slack)](https://slack.unleash.run)\n\n💬 [Join Unleash on Slack](https://slack.unleash.run) if you want ask open questions about Unleash, feature toggling or discuss these topics in general.\n\n💻 [Create a GitHub issue](https://github.com/Unleash/unleash/issues/new) if you have found a bug or have ideas on how to improve Unleash.\n\n📚 [Visit the documentation](https://docs.getunleash.io/) for more in-depth descriptions, how-to guides, and more.\n\n📖 Learn more about the principles of building and scaling [feature flag](https://docs.getunleash.io/guides/feature-flag-best-practices) solutions.\n\n<br/>\n\n## Contribute to Unleash\n\nUnleash is the largest [open-source feature flag solution](https://www.getunleash.io/) on GitHub. Building Unleash is a collaborative effort, and we owe a lot of gratitude to many smart and talented individuals. Building it together with the community ensures that we build a product that solves real problems for real people. We'd love to have your help too: Please feel free to open issues or provide pull requests.\n\nCheck out [the CONTRIBUTING.md file](./contributing/CONTRIBUTING.md) for contribution guidelines and the [Unleash developer guide](https://docs.getunleash.io/contribute) for tips on environment setup, running the tests, and running Unleash from source. Before a pull request can be merged, contributors must read and agree to the [Unleash Contributor License Agreement](./CLA.md).\n\n### Contributors\n\n<div align=\"center\">\n\n[![The Unleash contributors](https://cdn.getunleash.io/docs-assets/contributors.svg)](https://github.com/Unleash/unleash/graphs/contributors)\n\n</div>\n\n<br/>\n\n\n## Documentation\n\nYou can visit the Unleash documentation at https://docs.getunleash.io. As of 2 February 2026, the Unleash documentation source code lives in its own repository: [Unleash/unleash-documentation](https://github.com/Unleash/unleash-documentation).\n\n## Features our users love\n\n### Flexibility and adaptability\n\n- Get an overview of all feature flags across all your environments, applications and services\n- Targeted releases using [activation strategies](https://docs.getunleash.io/concepts/activation-strategies) to enable and disable features for certain users or segments without having to redeploy your application.\n- [Canary releases / gradual rollouts](https://docs.getunleash.io/concepts/activation-strategies)\n- [Kill switches](https://docs.getunleash.io/concepts/feature-flags#feature-flag-types)\n- [A/B testing](https://docs.getunleash.io/guides/a-b-testing)\n- 2 [environments](https://docs.getunleash.io/concepts/environments)\n- Organize feature flags using [tags](https://docs.getunleash.io/concepts/feature-flags#tags)\n- Out-of-the-box integrations with popular tools ([Slack](https://docs.getunleash.io/integrate/slack-app), [Microsoft Teams](https://docs.getunleash.io/integrate/teams), [Datadog](https://docs.getunleash.io/integrate/datadog)) + integrate with anything with [webhooks](https://docs.getunleash.io/integrate/webhook)\n- [Insights for managing technical debt](https://docs.getunleash.io/concepts/technical-debt) and [stale flags](https://docs.getunleash.io/concepts/technical-debt#stale-and-potentially-stale-flags)\n- API-first: _everything_ can be automated. No exceptions.\n- [12 official SDKs](https://docs.getunleash.io/sdks#official-sdks), and 10 [community-contributed SDKs](https://docs.getunleash.io/sdks#community-sdks)\n- Run","default_branch":"main","files":6643,"tree":[".do/deploy.template.yaml",".dockerignore",".editorconfig",".floe/config.json",".floe/rules/spelling-and-grammar.md",".github/FUNDING.yml",".github/Logo_DarkBlue_Transparent_Portrait.png",".github/Logo_DarkBlue_Transparent_Portrait.svg",".github/PULL_REQUEST_TEMPLATE.md",".github/Unleash_architecture.svg",".github/dashboard.png",".github/deploy-digital.svg",".github/deploy-heroku-20.png",".github/docker-compose.test.yml",".github/ext-logos/amedia-logo.png",".github/ext-logos/budgets.png",".github/ext-logos/finn.jpg",".github/ext-logos/nav.jpg",".github/ext-logos/otovo.png",".github/github_header_opaque_landscape.svg",".github/github_online_demo.svg",".github/github_unleash_users.svg",".github/logo.png",".github/stale.yml",".github/unleash-logo.svg",".github/workflows/add-to-project.yml",".github/workflows/ai-cflag-cleanup-copilot.yml",".github/workflows/ai-flag-cleanup-pr.yml",".github/workflows/ai-flag-cleanup.yml.disabled",".github/workflows/auto-assign-pr-author.yaml",".github/workflows/build.yaml",".github/workflows/build_coverage.yaml",".github/workflows/build_frontend_prs.yml",".github/workflows/build_prs_jest_report.yaml",".github/workflows/codeql-analysis.yml",".github/workflows/core-feature-alert.yml",".github/workflows/dependency-review.yml",".github/workflows/docker_publish.yaml",".github/workflows/e2e.frontend.yaml",".github/workflows/flag-no-response.yaml",".github/workflows/notify_enterprise.yaml",".github/workflows/openapi-diff.yaml",".github/workflows/pr_build.yaml",".github/workflows/publish-new-version.yaml",".github/workflows/release.yaml",".github/workflows/update_contributors.yaml",".github/workflows/update_version_for_version_checker.yml",".github/workflows/validate-migrations.yaml",".gitignore",".husky/pre-commit",".husky/update-openapi-spec-list.js",".mergify.yml",".node-version",".npmignore",".nvmrc",".pnpm/patches/cypress-vite-npm-1.8.0-5384b5466c.patch",".vscode/extensions.json",".vscode/settings.json","AGENTS.md","CHANGELOG.md","CLA.md","CLAUDE.md","CODEOWNERS","CODE_OF_CONDUCT.md","Dockerfile","LICENSE","README.md","USERS.md","app.json","biome.json","cliff.toml","contributing/ADRs/ADRs.md","contributing/ADRs/back-end/POST-PUT-api-payload.md","contributing/ADRs/back-end/api-version-tracking.md","contributing/ADRs/back-end/breaking-db-changes.md","contributing/ADRs/back-end/correct-type-dependencies.md","contributing/ADRs/back-end/frontend-api-design.md","contributing/ADRs/back-end/naming.md","contributing/ADRs/back-end/preferred-export.md","contributing/ADRs/back-end/specificity-db-columns.md","contributing/ADRs/back-end/sql-standards.md","contributing/ADRs/back-end/write-model-vs-read-models.md","contributing/ADRs/front-end/component-naming.md","contributing/ADRs/front-end/deprecated/preferred-styles-import-placement.md","contributing/ADRs/front-end/handling-tables.md","contributing/ADRs/front-end/interface-naming.md","contributing/ADRs/front-end/jsx-conditionals.md","contributing/ADRs/front-end/preferred-component-props-usage.md","contributing/ADRs/front-end/preferred-data-fetching-method.md","contributing/ADRs/front-end/preferred-data-mutation-method.md","contributing/ADRs/front-end/preferred-export.md","contributing/ADRs/front-end/preferred-folder-structure.md","contributing/ADRs/front-end/preferred-form-architecture.md","contributing/ADRs/front-end/preferred-function-type.md","contributing/ADRs/front-end/preferred-styling-method.md","contributing/ADRs/front-end/sdk-generator.md","contributing/ADRs/overarching/domain-language.md","contributing/ADRs/overarching/logging-levels.md","contributing/ADRs/overarching/logging.md","contributing/ADRs/overarching/separation-request-response-schemas.md","contributing/CONTRIBUTING.md","contributing/backend/overview.md","contributing/client-specification.md","contributing/developer-guide.md","contributing/frontend/overview.md","docker-bake.hcl","docker-compose-enterprise.yml","docker-compose.postgres.yml","docker-compose.yml","docker/local-postgres/Dockerfile","docker/local-postgres/init-unleash.sql","floating-label.grit","frontend/.editorconfig","frontend/.gitignore","frontend/.npmignore","frontend/.nvmrc","frontend/.yarn/patches/cypress-vite-npm-1.8.0-5384b5466c.patch","frontend/README.md","frontend/check-imports.rc","frontend/cypress.config.ts","frontend/cypress.d.ts","frontend/cypress/README.md","frontend/cypress/enterprise/feature.spec.ts","frontend/cypress/enterprise/groups.spec.ts","frontend/cypress/enterprise/projects/access.spec.ts","frontend/cypress/fixtures/example.json","frontend/cypress/global.d.ts","frontend/cypress/oss/demo/demo.spec.ts","frontend/cypress/oss/feature/feature.spec.ts","frontend/cypress/oss/segments/segments.spec.ts","frontend/cypress/support/API.ts","frontend/cypress/support/UI.ts","frontend/cypress/support/commands.ts","frontend/cypress/support/e2e.ts","frontend/cypress/support/index.ts","frontend/cypress/tsconfig.json","frontend/index.html","frontend/index.js","frontend/mise.toml","frontend/orval.config.ts","frontend/package.json","frontend/public/cs_CZ.png","frontend/public/da-DK.png","frontend/public/datadog.svg","frontend/public/de_DE.png","frontend/public/en-GB.png","frontend/public/en-IN.png","frontend/public/en-US.png","frontend/public/favicon.ico","frontend/public/favicon_old.ico","frontend/public/flags-normal/ad.png","frontend/public/flags-normal/ae.png","frontend/public/flags-normal/af.png","frontend/public/flags-normal/ag.png","frontend/public/flags-normal/al.png","frontend/public/flags-normal/am.png","frontend/public/flags-normal/ao.png","frontend/public/flags-normal/ar.png","frontend/public/flags-normal/at.png","frontend/public/flags-normal/au.png","frontend/public/flags-normal/az.png","frontend/public/flags-normal/ba.png","frontend/public/flags-normal/bb.png","frontend/public/flags-normal/bd.png","frontend/public/flags-normal/be.png","frontend/public/flags-normal/bf.png","frontend/public/flags-normal/bg.png","frontend/public/flags-normal/bh.png","frontend/public/flags-normal/bi.png","frontend/public/flags-normal/bj.png","frontend/public/flags-normal/bn.png","frontend/public/flags-normal/bo.png","frontend/public/flags-normal/br.png","frontend/public/flags-normal/bs.png","frontend/public/flags-normal/bt.png","frontend/public/flags-normal/bw.png","frontend/public/flags-normal/by.png","frontend/public/flags-normal/bz.png","frontend/public/flags-normal/ca.png","frontend/public/flags-normal/cd.png","frontend/public/flags-normal/cf.png","frontend/public/flags-normal/cg.png","frontend/public/flags-normal/ch.png","frontend/public/flags-normal/ci.png","frontend/public/flags-normal/cl.png","frontend/public/flags-normal/cm.png","frontend/public/flags-normal/cn.png","frontend/public/flags-normal/co.png","frontend/public/flags-normal/cr.png","frontend/public/flags-normal/cu.png","frontend/public/flags-normal/cv.png","frontend/public/flags-normal/cy.png","frontend/public/flags-normal/cz.png","frontend/public/flags-normal/de.png","frontend/public/flags-normal/dj.png","frontend/public/flags-normal/dk.png","frontend/public/flags-normal/dm.png","frontend/public/flags-normal/do.png","frontend/public/flags-normal/dz.png","frontend/public/flags-normal/ec.png","frontend/public/flags-normal/ee.png","frontend/public/flags-normal/eg.png","frontend/public/flags-normal/eh.png","frontend/public/flags-normal/er.png","frontend/public/flags-normal/es.png","frontend/public/flags-normal/et.png","frontend/public/flags-normal/fi.png","frontend/public/flags-normal/fj.png","frontend/public/flags-normal/fm.png","frontend/public/flags-normal/fr.png","frontend/public/flags-normal/ga.png","frontend/public/flags-normal/gb.png","frontend/public/flags-normal/gd.png","frontend/public/flags-normal/ge.png","frontend/public/flags-normal/gh.png","frontend/public/flags-normal/gm.png","frontend/public/flags-normal/gn.png","frontend/public/flags-normal/gq.png","frontend/public/flags-normal/gr.png","frontend/public/flags-normal/gt.png","frontend/public/flags-normal/gw.png","frontend/public/flags-normal/gy.png","frontend/public/flags-normal/hn.png","frontend/public/flags-normal/hr.png","frontend/public/flags-normal/ht.png","frontend/public/flags-normal/hu.png","frontend/public/flags-normal/id.png","frontend/public/flags-normal/ie.png","frontend/public/flags-normal/il.png","frontend/public/flags-normal/in.png","frontend/public/flags-normal/iq.png","frontend/public/flags-normal/ir.png","frontend/public/flags-normal/is.png","frontend/public/flags-normal/it.png","frontend/public/flags-normal/jm.png","frontend/public/flags-normal/jo.png","frontend/public/flags-normal/jp.png","frontend/public/flags-normal/ke.png","frontend/public/flags-normal/kg.png","frontend/public/flags-normal/kh.png","frontend/public/flags-normal/ki.png","frontend/public/flags-normal/km.png","frontend/public/flags-normal/kn.png","frontend/public/flags-normal/kp.png","frontend/public/flags-normal/kr.png","frontend/public/flags-normal/ks.png","frontend/public/flags-normal/kw.png","frontend/public/flags-normal/kz.png","frontend/public/flags-normal/la.png","frontend/public/flags-normal/lb.png","frontend/public/flags-normal/lc.png","frontend/public/flags-normal/li.png","frontend/public/flags-normal/lk.png","frontend/public/flags-normal/lr.png","frontend/public/flags-normal/ls.png","frontend/public/flags-normal/lt.png","frontend/public/flags-normal/lu.png","frontend/public/flags-normal/lv.png","frontend/public/flags-normal/ly.png","frontend/public/flags-normal/ma.png","frontend/public/flags-normal/mc.png","frontend/public/flags-normal/md.png","frontend/public/flags-normal/me.png","frontend/public/flags-normal/mg.png","frontend/public/flags-normal/mh.png","frontend/public/flags-normal/mk.png","frontend/public/flags-normal/ml.png","frontend/public/flags-normal/mm.png","frontend/public/flags-normal/mn.png","frontend/public/flags-normal/mr.png","frontend/public/flags-normal/mt.png","frontend/public/flags-normal/mu.png","frontend/public/flags-normal/mv.png","frontend/public/flags-normal/mw.png","frontend/public/flags-normal/mx.png","frontend/public/flags-normal/my.png","frontend/public/flags-normal/mz.png","frontend/public/flags-normal/na.png","frontend/public/flags-normal/ne.png","frontend/public/flags-normal/ng.png","frontend/public/flags-normal/ni.png","frontend/public/flags-normal/nl.png","frontend/public/flags-normal/no.png","frontend/public/flags-normal/np.png","frontend/public/flags-normal/nr.png","frontend/public/flags-normal/nz.png","frontend/public/flags-normal/om.png","frontend/public/flags-normal/pa.png","frontend/public/flags-normal/pe.png","frontend/public/flags-normal/pg.png","frontend/public/flags-normal/ph.png","frontend/public/flags-normal/pk.png","frontend/public/flags-normal/pl.png","frontend/public/flags-normal/pt.png","frontend/public/flags-normal/pw.png","frontend/public/flags-normal/py.png","frontend/public/flags-normal/qa.png","frontend/public/flags-normal/ro.png","frontend/public/flags-normal/rs.png","frontend/public/flags-normal/ru.png","frontend/public/flags-normal/rw.png","frontend/public/flags-normal/sa.png","frontend/public/flags-normal/sb.png","frontend/public/flags-normal/sc.png","frontend/public/flags-normal/sd.png","frontend/public/flags-normal/se.png","frontend/public/flags-normal/sg.png","frontend/public/flags-normal/si.png","frontend/public/flags-normal/sk.png","frontend/public/flags-normal/sl.png","frontend/public/flags-normal/sm.png","frontend/public/flags-normal/sn.png","frontend/public/flags-normal/so.png","frontend/public/flags-normal/sr.png","frontend/public/flags-normal/st.png","frontend/public/flags-normal/sv.png","frontend/public/flags-normal/sy.png","frontend/public/flags-normal/sz.png","frontend/public/flags-normal/td.png","frontend/public/flags-normal/tg.png","frontend/public/flags-normal/th.png","frontend/public/flags-normal/tj.png","frontend/public/flags-normal/tl.png","frontend/public/flags-normal/tm.png","frontend/public/flags-normal/tn.png","frontend/public/flags-normal/to.png","frontend/public/flags-normal/tr.png","frontend/public/flags-normal/tt.png","frontend/public/flags-normal/tv.png","frontend/public/flags-normal/tw.png","frontend/public/flags-normal/tz.png","frontend/public/flags-normal/ua.png","frontend/public/flags-normal/ug.png","frontend/public/flags-normal/us.png","frontend/public/flags-normal/uy.png","frontend/public/flags-normal/uz.png","frontend/public/flags-normal/va.png","frontend/public/flags-normal/vc.png","frontend/public/flags-normal/ve.png","frontend/public/flags-normal/vn.png","frontend/public/flags-normal/vu.png","frontend/public/flags-normal/ws.png","frontend/public/flags-normal/ye.png","frontend/public/flags-normal/za.png","frontend/public/flags-normal/zm.png","frontend/public/flags-normal/zw.png","frontend/public/fr-FR.png","frontend/public/jira.svg","frontend/public/logo-filled.png","frontend/public/logo-inverted.png","frontend/public/logo-unleash.png","frontend/public/logo.png","frontend/public/logo_old.png","frontend/public/nb-NO.png","frontend/public/openapi-static/Beta.svg","frontend/public/openapi-static/Enterprise.svg","frontend/public/pt_BR.png","frontend/public/slack.svg","frontend/public/sv-SE.png","frontend/public/switches.svg","frontend/public/teams.svg","frontend/public/unknown-locale.png","frontend/public/webhooks.svg","frontend/scripts/clean_orval_generated.sh","frontend/src/ApplicationRoot.tsx","frontend/src/__mocks__/fileMock.js","frontend/src/__mocks__/svgMock.js","frontend/src/asset-types.d.ts","frontend/src/assets/fonts/roboto300.ttf","frontend/src/assets/fonts/roboto400.ttf","frontend/src/assets/fonts/roboto500.ttf","frontend/src/assets/fonts/roboto700.ttf","frontend/src/assets/fonts/senBold.ttf","frontend/src/assets/fonts/senExtraBold.ttf","frontend/src/assets/fonts/senRegular.ttf","frontend/src/assets/icons/24_Text format off.svg","frontend/src/assets/icons/24_Text format.svg","frontend/src/assets/icons/addfiles.svg","frontend/src/assets/icons/arrowLeft.svg","frontend/src/assets/icons/arrowRight.svg","frontend/src/assets/icons/case-insensitive.svg","frontend/src/assets/icons/case-sensitive.svg","frontend/src/assets/icons/code-block.svg","frontend/src/assets/icons/constraint-equals.svg","frontend/src/assets/icons/constraint-not-equals.svg","frontend/src/assets/icons/datadog.svg","frontend/src/assets/icons/dots.svg","frontend/src/assets/icons/email.svg","frontend/src/assets/icons/gradual.svg","frontend/src/assets/icons/heart.svg","frontend/src/assets/icons/import.svg","frontend/src/assets/icons/instance-health.svg","frontend/src/assets/icons/isenabled-false.svg","frontend/src/assets/icons/isenabled-true.svg","frontend/src/assets/icons/jira-comment.svg","frontend/src/assets/icons/jira.svg","frontend/src/assets/icons/lifecycle/stage-archived.svg","frontend/src/assets/icons/lifecycle/stage-completed.svg","frontend/src/assets/icons/lifecycle/stage-created.svg","frontend/src/assets/icons/lifecycle/stage-live.svg"],"storefront":"/r/Unleash","claimed":false,"request_supported":{"post":"https://gitbuyer.com/r/Unleash/unleash/request-supported","requests":0},"note":"indexed from public GitHub; nothing is for sale on this page. Clone it from GitHub. Paid listings live at /search."}