-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
61 lines (47 loc) · 1.45 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
SERVICE_NAME=ui
# Port will be assigned by default in development but should be
# passed via environment for deploy targets.
PORT=
JWT_TOKEN=
JWT_SECRET=
# URIs of downstream services including ports and version
WATER_URI=
CRM_URI=
IDM_URI=
PERMIT_URI=
RETURNS_URI=
SYSTEM_URI=
# Remote log capturing details
ERRBIT_KEY=
ERRBIT_SERVER=
COOKIE_SECRET=
TEST_MODE=
BASE_URL=
GOOGLE_ANALYTICS_PROPERTY_ID=
REDIS_HOST=
REDIS_PORT=
REDIS_PASSWORD=
ALLOW_CHARGE_VERSION_UPLOADS=
TRIGGER_SROC_TWO_PART_TARIFF=
# Defaults to 20 if not set
BILL_RUNS_TO_DISPLAY_PER_PAGE=
NODE_ENV=production
ENVIRONMENT=pre
# TODO: When NODE_ENV is 'test' the previous team would often set `lazyConnect` in the ioRedis connection config to
# 'true'. It's not always the case though and things seem fine?? So, see if we can go without it (less complexity) else
# try and figure out why its needed when testing (nothing so far when Googling)
# From the docs
# By default, When a new Redis instance is created, it will connect to Redis server automatically. If you want to keep
# disconnected until a command is called, you can pass the lazyConnect option to the constructor
LAZY_REDIS=true
# Feature toggles
ENABLE_DELETE_ALL_BILLING_DATA_FEATURE=
ENABLE_SYSTEM_LICENCE_VIEW=
SHOW_VERIFICATION_CODE_FEATURE=
TRIGGER_SROC_TWO_PART_TARIFF=
TRIGGER_SROC_ANNUAL=
SHOW_RETURN_REQUIREMENTS=
USE_NEW_BILL_RUN_SETUP=
ENABLE_SYSTEM_NOTIFICATIONS=
# Set log level for app. Default is 'info'
WRLS_LOG_LEVEL=debug