-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
35 lines (31 loc) · 980 Bytes
/
.env.example
File metadata and controls
35 lines (31 loc) · 980 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
34
35
# Shared settings (if no env vars are used, it will default to the first option (memory) with the shared settings)
# Iceberg Catalog settings
# Set to your catalog url
CATALOG_URL=http://127.0.0.1:3000
# Optional: CORS settings
CORS_ENABLED=true
CORS_ALLOW_ORIGIN=http://localhost:8080
# Needed for UI to work
JWT_SECRET=secret
# Option 1 (Memory)
# SlateDB storage settings
OBJECT_STORE_BACKEND=memory
# Option 2 (File)
# SlateDB storage settings
#OBJECT_STORE_BACKEND=file
#FILE_STORAGE_PATH=storage
#SLATEDB_PREFIX=state
# Option 3 (S3)
# SlateDB storage settings
#OBJECT_STORE_BACKEND=s3
# Optional: AWS S3 storage (leave blank if using local storage)
#AWS_ACCESS_KEY_ID="<your_aws_access_key_id>"
#AWS_SECRET_ACCESS_KEY="<your_aws_secret_access_key>"
#AWS_REGION="<your_aws_region>"
#S3_BUCKET="<your_s3_bucket>"
#S3_ALLOW_HTTP=
# Memory and disk configurations
#MEM_POOL_TYPE=greedy
#MEM_POOL_SIZE_MB=4096
#MEM_ENABLE_TRACK_CONSUMERS_POOL=true
#DISK_POOL_SIZE_MB=102400