-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.development
23 lines (18 loc) · 1012 Bytes
/
.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
# NOTE: This file should NOT contain secrets!
# Prevent the browser from opening when starting the dev server
BROWSER=none
# Local vars
APP_DOMAIN=http://localhost:3000
API_DOMAIN=''
# You must create custom environment variables beginning with "REACT_APP_".
# Any other variables except "NODE_ENV" will be ignored to avoid accidentally
# exposing a private key on the machine that could have the same name.
# You have to restart the dev server after changing this file!
REACT_APP_AUTH0_DOMAIN=upstandfm.eu.auth0.com
REACT_APP_AUTH0_CLIENT_ID=gLOhkh2Bjp9Ik7gKwswIRoIaFg3UhoxX
REACT_APP_AUTH0_REDIRECT_URI=$APP_DOMAIN
REACT_APP_AUTH0_LOGOUT_URL=$APP_DOMAIN
REACT_APP_AUTH0_AUDIENCE=$API_DOMAIN
REACT_APP_AUTH0_SCOPE='create:channel read:channels read:channel read:channel-recordings upload:audio download:audio read:workspace read:workspace-members create:workspace-invite read:workspace-invites'
REACT_APP_API_DOMAIN=$API_DOMAIN
REACT_APP_AUTH0_WORKSPACE_ID_OIDC_CLAIM='https://api.upstand.fm/workspace-id'