All Projects → Unleash → unleash-frontend

Unleash / unleash-frontend

Licence: Apache-2.0 license
Unleash Admin UI

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to unleash-frontend

Unleash
Unleash is the open source feature toggle service.
Stars: ✭ 4,679 (+16034.48%)
Mutual labels:  feature-toggles, unleash
react-client
React JS SDK client for Split Software
Stars: ✭ 23 (-20.69%)
Mutual labels:  feature-toggles
java-server-sdk
LaunchDarkly Server-Side SDK for Java
Stars: ✭ 71 (+144.83%)
Mutual labels:  feature-toggles
Toggler
Feature toggle library for PHP
Stars: ✭ 18 (-37.93%)
Mutual labels:  feature-toggles
php-server-sdk
LaunchDarkly Server-side SDK for PHP
Stars: ✭ 31 (+6.9%)
Mutual labels:  feature-toggles
js-sdk
JavaScript frontend SDK for ConfigCat. ConfigCat is a hosted feature flag service: https://configcat.com. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.
Stars: ✭ 21 (-27.59%)
Mutual labels:  feature-toggles
flagsmith
Open Source Feature Flagging and Remote Config Service. Host on-prem or use our hosted version at https://flagsmith.com/
Stars: ✭ 2,309 (+7862.07%)
Mutual labels:  feature-toggles
unleash-docker
Docker container for unleash
Stars: ✭ 89 (+206.9%)
Mutual labels:  feature-toggles
YMFF
Feature management made easy.
Stars: ✭ 26 (-10.34%)
Mutual labels:  feature-toggles
pheature-flags
Pheature flags main repository
Stars: ✭ 75 (+158.62%)
Mutual labels:  feature-toggles
react-unleash-flags
React Component for Gitlab or Unleash Feature Flags
Stars: ✭ 36 (+24.14%)
Mutual labels:  unleash
js-client-sdk
LaunchDarkly Client-side SDK for Browser JavaScript
Stars: ✭ 93 (+220.69%)
Mutual labels:  feature-toggles
flagsmith-java-client
Java Client for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://www.flagsmith.com/
Stars: ✭ 16 (-44.83%)
Mutual labels:  feature-toggles
php-client
PHP SDK client for Split Software
Stars: ✭ 14 (-51.72%)
Mutual labels:  feature-toggles
ld-redux
A library to integrate launch darkly with react redux
Stars: ✭ 33 (+13.79%)
Mutual labels:  feature-toggles
java-client
Java SDK client for Split Software
Stars: ✭ 20 (-31.03%)
Mutual labels:  feature-toggles
doorkeeper
A Feature Toggle for PHP
Stars: ✭ 16 (-44.83%)
Mutual labels:  feature-toggles
ld-scheduler
Schedule Launch Darkly flags on or off
Stars: ✭ 14 (-51.72%)
Mutual labels:  feature-toggles
laravel-rollout
A package to integrate rollout into your Laravel project.
Stars: ✭ 23 (-20.69%)
Mutual labels:  feature-toggles
eight ball
Ruby gem for querying feature flags
Stars: ✭ 17 (-41.38%)
Mutual labels:  feature-toggles

unleash-frontend

This repo contains the Unleash Admin UI frontend app.

Run with a local instance of the unleash-api

First, start the unleash-api backend on port 4242. Then, start the unleash-frontend dev server:

cd ~/unleash-frontend
yarn install
yarn run start

Run with a heroku-hosted instance of unleash-api

Alternatively, instead of running unleash-api on localhost, use a remote instance:

cd ~/unleash-frontend
yarn install
yarn run start:heroku

Running end-to-end tests

We have a set of Cypress tests that run on the build before a PR can be merged so it's important that you check these yourself before submitting a PR. On the server the tests will run against the deployed Heroku app so this is what you probably want to test against:

yarn run start:heroku

In a different shell, you can run the tests themselves:

yarn run e2e:heroku

If you need to test against patches against a local server instance, you'll need to run that, and then run the end to end tests using:

yarn run e2e

You may also need to test that a feature works against the enterprise version of unleash. Assuming the Heroku instance is still running, this can be done by:

yarn run start:enterprise
yarn run e2e

Generating the OpenAPI client

The frontend uses an OpenAPI client generated from the backend's OpenAPI spec. Whenever there are changes to the backend API, the client should be regenerated:

./scripts/generate-openapi.sh

This script assumes that you have a running instance of the enterprise backend at http://localhost:4242. The new OpenAPI client will be generated from the runtime schema of this instance. The target URL can be changed by setting the UNLEASH_OPENAPI_URL env var.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].