-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.env.example
23 lines (19 loc) · 1.04 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Get atlascode FX3 API keys from go/fx3/resources/api-keys
ATLASCODE_FX3_API_KEY="totally-real-api-key"
ATLASCODE_FX3_ENVIRONMENT="production"
ATLASCODE_FX3_TARGET_APP="atlascode_web"
ATLASCODE_FX3_TIMEOUT="2000"
#
# Overrides for feature flags and experiments:
# Setting an override will force your client to behave like you have joined the feature flag rollout,
# or you are part of the corresponding experiment audience, without affecting any telemetry.
#
# Syntax: comma separated settings in the format <name>=<boolean>
ATLASCODE_FF_OVERRIDES="feature_flag_1=true, feature_flag_2=false"
# This is for experiments that controls a boolean value.
# Syntax: comma separated settings in the format <name>=<boolean>
ATLASCODE_EXP_OVERRIDES_BOOL="exp1_name=true, exp2_name=false"
# This is for experiments that controls a string value.
# Syntax: comma separated settings in the format <name>=<string>
# NOTE: the string is unquoted, and a comma within the string is not supported.
ATLASCODE_EXP_OVERRIDES_STRING="exp3_name=something, exp4_name=something else"