forked from dlozlla/auth0-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
37 lines (24 loc) · 1.13 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
# --- INFO taken from Auth0 Dashboard --- #
# Your Auth0 tenant domain base URL
ISSUER_BASE_URL=https://dev-whatever.us.auth0.com
# The ID of you App in Auth0
CLIENT_ID=abcDE12345
# The secret of you App in Auth0
CLIENT_SECRET=alñsdkjfa987923415okjsdgflhsarg
# The OIDC response_type you want to use. It must be one of [id_token, code id_token, code]. Response_mode is left to always default to "query"
RESPONSE_TYPE=code
# API Identifier
AUDIENCE=https://my-audience-url
# SCOPE to be used when logging in, and later to access the API at the AUDIENCE
SCOPE=openid profile email offline_access read:balance
# -- More local INFO for the App --- #
# Secret for encryting cookies
SESSION_SECRET=put here your favorite long random secret
# The local port where your App will be listening. Needs to be aligned with cthe App allback URL as reflected on Auth0 Dashboard
APP_PORT=37500
# The local port where your API will be listening.
API_PORT=35500
# URL where your API is listening (i.e. the resource server)
API_URL=http://localhost:35500
# spaces separated list of the scopes that are required to consume you API
REQUIRED_SCOPES=read:balance