31 lines
1.0 KiB
Bash
31 lines
1.0 KiB
Bash
|
|
## It's advisable to consult the documentation and use the tools/deploy.sh to generate the passwords, keys, instead of manually filling them.
|
||
|
|
|
||
|
|
AP_ENGINE_EXECUTABLE_PATH=dist/packages/engine/main.js
|
||
|
|
|
||
|
|
## Random Long Password (Optional for community edition)
|
||
|
|
AP_API_KEY={{ activepieces_api_key }}
|
||
|
|
|
||
|
|
## 256 bit encryption key, 32 hex character
|
||
|
|
AP_ENCRYPTION_KEY={{ activepieces_encryption_key }}
|
||
|
|
|
||
|
|
## JWT Secret
|
||
|
|
AP_JWT_SECRET={{ activepieces_jwt_secret }}
|
||
|
|
|
||
|
|
AP_ENVIRONMENT=prod
|
||
|
|
AP_FRONTEND_URL=https://{{ domain_activepieces }}
|
||
|
|
AP_WEBHOOK_TIMEOUT_SECONDS=30
|
||
|
|
AP_TRIGGER_DEFAULT_POLL_INTERVAL=5
|
||
|
|
AP_POSTGRES_DATABASE=activepieces
|
||
|
|
AP_POSTGRES_HOST=postgres
|
||
|
|
AP_POSTGRES_PORT=5432
|
||
|
|
AP_POSTGRES_USERNAME=activepieces-postgres
|
||
|
|
AP_POSTGRES_PASSWORD={{ activepieces_postgres_password }}
|
||
|
|
AP_EXECUTION_MODE=UNSANDBOXED
|
||
|
|
AP_REDIS_HOST=redis
|
||
|
|
AP_REDIS_PORT=6379
|
||
|
|
AP_FLOW_TIMEOUT_SECONDS=600
|
||
|
|
AP_TELEMETRY_ENABLED=true
|
||
|
|
AP_TEMPLATES_SOURCE_URL="https://cloud.activepieces.com/api/v1/flow-templates"
|
||
|
|
AP_PROJECT_RATE_LIMITER_ENABLED=false
|
||
|
|
AP_PIECES_SOURCE=DB
|
||
|
|
AP_FILE_STORAGE_LOCATION=DB
|