mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import type { IUiConfig } from 'interfaces/uiConfig';
|
|
|
|
export const defaultValue: IUiConfig = {
|
|
name: 'Unleash',
|
|
version: '5.x',
|
|
slogan: 'The enterprise ready feature flag service.',
|
|
flags: {
|
|
P: false,
|
|
RE: false,
|
|
EEA: false,
|
|
SE: false,
|
|
T: false,
|
|
UNLEASH_CLOUD: false,
|
|
UG: false,
|
|
},
|
|
links: [
|
|
{
|
|
value: 'Documentation',
|
|
icon: 'library_books',
|
|
href: 'https://docs.getunleash.io/docs?source=oss',
|
|
title: 'User documentation',
|
|
},
|
|
{
|
|
value: 'GitHub',
|
|
icon: 'c_github',
|
|
href: 'https://github.com/Unleash',
|
|
title: 'Source code on GitHub',
|
|
},
|
|
],
|
|
networkViewEnabled: false,
|
|
resourceLimits: {
|
|
segmentValues: 1000,
|
|
strategySegments: 5,
|
|
signalEndpoints: 5,
|
|
actionSetActions: 10,
|
|
actionSetsPerProject: 5,
|
|
actionSetFilters: 5,
|
|
actionSetFilterValues: 25,
|
|
signalTokensPerEndpoint: 5,
|
|
featureEnvironmentStrategies: 30,
|
|
constraintValues: 250,
|
|
},
|
|
};
|