Skip to content

Commit 664a9a6

Browse files
jbovetJose Bovet Derpich
and
Jose Bovet Derpich
authored
doc: add environment variables provider to the ecosystem #530 (#559)
Signed-off-by: Jose Bovet Derpich <[email protected]> Co-authored-by: Jose Bovet Derpich <[email protected]>
1 parent c56c185 commit 664a9a6

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

src/datasets/providers/env-var.ts

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import EnvVarSvg from '@site/static/img/gear-icon.svg';
2+
import { Provider } from '.';
3+
4+
export const EnvVar: Provider = {
5+
name: 'Environment Variable',
6+
logo: EnvVarSvg,
7+
excludeFromLandingPage: true,
8+
technologies: [
9+
{
10+
technology: 'JavaScript',
11+
vendorOfficial: true,
12+
href: 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/env-var',
13+
category: ['Server'],
14+
},
15+
{
16+
technology: 'Go',
17+
vendorOfficial: true,
18+
href: 'https://github.com/open-feature/go-sdk-contrib/tree/main/providers/from-env',
19+
category: ['Server'],
20+
},
21+
{
22+
technology: 'Java',
23+
vendorOfficial: true,
24+
href: 'https://github.com/open-feature/java-sdk-contrib/tree/main/providers/env-var',
25+
category: ['Server'],
26+
},
27+
],
28+
};

src/datasets/providers/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { ComponentType, SVGProps } from 'react';
33
import { CloudBees } from './cloudbees';
44
import { ConfigCat } from './configcat';
55
import { DevCycle } from './devcycle';
6+
import { EnvVar } from './env-var';
67
import { Flagd } from './flagd';
78
import { Flagsmith } from './flagsmith';
89
import { Flipt } from './flipt';
@@ -22,6 +23,7 @@ export const PROVIDERS: Provider[] = [
2223
CloudBees,
2324
ConfigCat,
2425
DevCycle,
26+
EnvVar,
2527
FeatBit,
2628
Flagd,
2729
Flagsmith,

src/datasets/providers/user-defaults.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import UserDefaultsSvg from '@site/static/img/user-defaults-no-fill.svg';
1+
import UserDefaultsSvg from '@site/static/img/gear-icon.svg';
22
import { Provider } from '.';
33

44
// https://developer.apple.com/documentation/foundation/userdefaults
File renamed without changes.

0 commit comments

Comments
 (0)