forked from HHS/TANF-app
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.development
42 lines (34 loc) · 1.44 KB
/
.env.development
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
###
# Development environment-specific settings
# This file is loaded when running `npm start`
#
# The hostname behind the tdrs-backend Django app
REACT_APP_BACKEND_HOST=http://localhost:3000
# The URL running the tdrs-backend Django app
REACT_APP_BACKEND_URL=http://localhost:3000/v1
REACT_APP_LOGIN_GOV_URL=https://idp.int.identitysandbox.gov/account
# The app will timeout after 20 minutes of inactivity
# 20 minutes == 20*60*1000 == 1200000
REACT_APP_TIMEOUT_TIME=1200000
# The modal pop up will timeout after 3 minutes of inactivity
# 3 minutes == 3*60*1000 == 180000
REACT_APP_LOGOUT_TIME=180000
# The app will wait for 30 seconds before sending requests
# to the backend to update the session to prevent
# overloading the server
# 30 seconds == 30*1000 == 30000
REACT_APP_DEBOUNCE_TIME=30000
# The app will wait for 60 seconds before recognizing an action
# to prevent events from overloading the browser and slowing down
# performance.
# 60 seconds == 60 * 1000 == 60000
REACT_APP_EVENT_THROTTLE_TIME=60000
# Setup SCSS:
# The following makes it possible to import SASS modules
# without relative paths. Removing this will require all @imports in
# .scss files to be made with relative paths, like '../../node_modules/my_package'
# Presently both of these are possible (in an .scss file):
# @import 'theme/_global.scss';
# @import '../../theme/_global.scss';
# Without the variable, only the relative import is possible
SASS_PATH=node_modules:src