-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 1.14 KB
/
Copy path.env.example
File metadata and controls
36 lines (29 loc) · 1.14 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
# Environment: "local" or "production"
APP_ENVIRONMENT=local
# Server
PORT=8080
# APP_APPLICATION__HOST=127.0.0.1
# APP_APPLICATION__WEB_UI=true
# APP_APPLICATION__CLEAR_ON_STARTUP=false
# HMAC secret for URL signing (required for production — do NOT use the default)
# APP_APPLICATION__HMAC_SECRET=change-me-to-a-real-secret
# Processing
# APP_PROCESSOR__CONCURRENCY=8
# APP_PROCESSOR__MAX_FILTER_OPS=256
# APP_PROCESSOR__MAX_SOURCE_SIZE=104857600
# Storage (filesystem is default; set client for S3 or GCS)
# APP_STORAGE__BASE_DIR=uploads
# APP_STORAGE__CLIENT__S3__REGION=us-east-1
# APP_STORAGE__CLIENT__S3__BUCKET=my-bucket
# APP_STORAGE__CLIENT__S3__ENDPOINT=https://s3.amazonaws.com
# APP_STORAGE__CLIENT__S3__ACCESS_KEY=
# APP_STORAGE__CLIENT__S3__SECRET_KEY=
# APP_STORAGE__CLIENT__GCS__BUCKET=my-bucket
# Result storage (defaults to source storage if unset)
# APP_RESULT_STORAGE__BASE_DIR=results
# Cache ("Filesystem" or "Redis")
# APP_CACHE__FILESYSTEM__BASE_DIR=cache
# APP_CACHE__FILESYSTEM__MAX_SIZE_MB=1024
# APP_CACHE__REDIS__URI=redis://127.0.0.1:6379
# MCP server (used by mcp-server/)
# STREAMING_ENGINE_SERVER_URL=http://localhost:8080