-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.env.sample
71 lines (60 loc) · 2.22 KB
/
.env.sample
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
62
63
64
65
66
67
68
69
70
71
# configuration gateway docs: https://hoop.dev/docs/configuring/gateway#gateway-configuration
# configuration agent docs: https://hoop.dev/docs/configuring/agent
GIN_MODE=release
ORG_MULTI_TENANT=false
# api gateway port
PORT=8009
# info | debug | warn | error
LOG_LEVEL=info
# console | json
LOG_ENCODING=console
GRPC_URL=http://127.0.0.1:8010
# path containing protocol libraries
LIBHOOP=_libhoop
# <allowed-org-id>,<rsa private key encoded in base64>
LICENSE_SIGNING_KEY=
# auth configuration
API_URL=http://localhost:8009
# Set the API_KEY with the following format:
# <your-org-id>|<random-string>
# API_KEY is only available for self hosted installations
# with ORG_MULTI_TENANT set to false
API_KEY=
# If you don't set a IDP and want to go with AUTH_METHOD as local, you must provide a JWK_KEY.
AUTH_METHOD=
# Generate a random string and place it here. This key shall not be lost or changed.
# If so, all the tokens generated with it will be invalid and all users will need
# to login again. This value is only necessary if AUTH_METHOD is set to local.
JWT_SECRET_KEY=
# It takes preference over IDP_CLIENT, IDP_CLIENT_SECRET and IDP_ISSUER.
# Format: <scheme>://<client-id>:<client-secret>@<issuer-url>/?groupsclaim=<claim-name>&scopes=<scope1,scope2>&_userinfo=<0|1>
# IDP_URI=
IDP_CLIENT_ID=
IDP_CLIENT_SECRET=
IDP_ISSUER=
IDP_AUDIENCE=
# DLP Provider can be 'mspresidio' or 'gcp'
# To use a DLP provider, you must be in an
# enterprise plan with hoop.dev. Otherwise,
# you can leave it blank
DLP_PROVIDER=
# for mspresidio, you must provide the urls for the services
MSPRESIDIO_ANALYZER_URL=
MSPRESIDIO_ANONYMIZER_URL=
# in case your DLP_PROVER is 'gcp', you must
# provide the dlp gcp credentials. See more
# at https://cloud.google.com/security/products/dlp
GOOGLE_APPLICATION_CREDENTIALS_JSON=
# webhooks svix
WEBHOOK_APPKEY=
# the default group to use as admin
ADMIN_USERNAME=admin
# xtdb connection configuration - legacy
POSTGRES_DB_URI=postgres://hoopdevuser:[email protected]:5449/hoopdevdb?sslmode=disable
# Tracking
# for development, let this as true
DO_NOT_TRACK=true
# Sessions download control
# Set to 'true' to disable sessions download
# Set to 'false' to allow sessions download (default)
DISABLE_SESSIONS_DOWNLOAD=false