-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.self-hosted.example
More file actions
33 lines (26 loc) · 880 Bytes
/
Copy path.env.self-hosted.example
File metadata and controls
33 lines (26 loc) · 880 Bytes
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
# BetterBase self-hosted example environment
# Required
BETTERBASE_JWT_SECRET=replace-with-32+-char-secret
BETTERBASE_PUBLIC_URL=http://localhost
BETTERBASE_ADMIN_EMAIL=admin@example.com
BETTERBASE_ADMIN_PASSWORD=change-me-strong-password
POSTGRES_USER=betterbase
POSTGRES_PASSWORD=change-me-strong-password
POSTGRES_DB=betterbase
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=change-me-minio-password
# Server runtime
NODE_ENV=production
CORS_ORIGINS=http://localhost
# Storage wiring used by compose
STORAGE_ENDPOINT=http://minio:9000
STORAGE_ACCESS_KEY=${MINIO_ROOT_USER}
STORAGE_SECRET_KEY=${MINIO_ROOT_PASSWORD}
STORAGE_BUCKET=betterbase
# Inngest (self-hosted)
INNGEST_BASE_URL=http://inngest:8288
INNGEST_LOG_LEVEL=info
INNGEST_SIGNING_KEY=replace-with-random-hex-64
INNGEST_EVENT_KEY=replace-with-random-hex-32
# Optional nginx public port override
# HTTP_PORT=80