-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenv
More file actions
41 lines (36 loc) · 1.46 KB
/
Copy pathenv
File metadata and controls
41 lines (36 loc) · 1.46 KB
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
DEV_MODE=true
LOG_LEVEL=info
TRUST_PROXY=true
DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
DATABASE_SCHEMA=public
AUDIT_DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
AUDIT_DATABASE_SCHEMA=public
SEARCH_DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable
SEARCH_DATABASE_SCHEMA=public
REDIS_URL=redis://redis:6379/0
ANALYTIC_REDIS_URL=redis://redis:6379/1
# Enable the portal Audit Log, Search and Analytics features.
# Without these, the portal hides the corresponding menu items.
AUDIT_LOG_ENABLED=true
SEARCH_ENABLED=true
ANALYTIC_ENABLED=true
CONFIG_SOURCE_TYPE=database
CUSTOM_RESOURCE_DIRECTORY=/app
APP_CUSTOM_RESOURCE_DIRECTORY=/app
AUTHGEAR_APP_ID=accounts
AUTHGEAR_CLIENT_ID=portal
AUTHGEAR_ENDPOINT=http://accounts.localhost:3100
AUTHGEAR_ENDPOINT_INTERNAL=http://nginx:3100
AUTHGEAR_WEB_SDK_SESSION_TYPE=refresh_token
ADMIN_API_ENDPOINT=http://authgear:3002
APP_HOST_SUFFIX=.localhost:3100
IMAGES_OBJECT_STORE_TYPE=MINIO
IMAGES_OBJECT_STORE_MINIO_ENDPOINT=http://minio:9000
IMAGES_OBJECT_STORE_MINIO_BUCKET_NAME=images
IMAGES_OBJECT_STORE_MINIO_ACCESS_KEY_ID=minio
IMAGES_OBJECT_STORE_MINIO_SECRET_ACCESS_KEY=secretpassword
USEREXPORT_OBJECT_STORE_TYPE=MINIO
USEREXPORT_OBJECT_STORE_MINIO_ENDPOINT=http://minio:9000
USEREXPORT_OBJECT_STORE_MINIO_BUCKET_NAME=userexport
USEREXPORT_OBJECT_STORE_MINIO_ACCESS_KEY_ID=minio
USEREXPORT_OBJECT_STORE_MINIO_SECRET_ACCESS_KEY=secretpassword