-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env
50 lines (43 loc) · 1.75 KB
/
.env
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
# Specify `webpack-dev-server` port.
# You shouldn't need to change this unless there is port collision on
# you local machine.
DEV_PORT=3010
# Change to `true` if testing out oathkeeper otherwise just leave this false
# for development of other parts of the shell
REACT_APP_AUTH_ENABLED=true
# When locally testing leave these endpoints as is.
# Webpack uses proxies found in `webpack.config.js` to proxy
# the request to your locally hosted or port-forwarded `@ory/oathkeeper`
# service's kratos endpoint.
# You can also point the proxy to directly kratos to bypass oathkeeper for testing.
# Oathkeeper endpoint
REACT_APP_AUTH_API_BASE_URL=/kratos
# REACT_APP_LOGIN_URL=/kratos/self-service/login/browser
REACT_APP_LOGOUT_URL=/kratos/self-service/logout/browser
REACT_APP_AUTH_TOKEN_URL=/sessions/whoami
REACT_APP_LOGIN_PROVIDER=keycloak
# If you have `REACT_APP_AUTH_ENABLED` set to `true` and you need a mock
# user to develop auth UI you can enable this.
REACT_APP_AUTH_MOCK_API=true
# This is a variable made in anticipation for a api that returns information
# about where remote microfrontends live.
# It is not used at the moment.
REACT_APP_REMOTE_API_BASE_URL=/remote
# Leave this as `true`
REACT_APP_REMOTE_MOCK_API=true
# Local microfrontend endpoints
# Roles Microfrontend
REMOTE_1_URL=http://localhost:3012
# Transfers Microfrontend
REMOTE_2_URL=http://localhost:3013
# Settlements Microfrontend
REMOTE_3_URL=http://localhost:3014
# Financial Positions Microfrontend
REMOTE_4_URL=http://localhost:3015
# Add the title variable here
REACT_APP_TITLE="Mojaloop Finance Portal"
REACT_APP_SUBTITLE=""
REACT_APP_TITLE_IMAGE=""
REACT_APP_TITLE_BAR_COLOR=""
REACT_APP_DFSP_IMG=""
# REACT_APP_DFSP_IMG='./public/Flag_of_Zambia.png'