- Add "Restore Defaults" dropdown to Automations page with confirmation - Create flows in "Defaults" folder for organization - Pre-populate trigger sample data when creating/restoring flows - Auto-publish flows (lock and enable) after creation - Fix email template context variables to match template tags - Fix dark mode logo switching in Activepieces iframe - Add iframe refresh on flow restore - Auto-populate business context (name, email, phone, address) in emails 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
2.0 KiB
Plaintext
52 lines
2.0 KiB
Plaintext
# Activepieces Configuration
|
|
# ------------------------------------------------------------------------------
|
|
# External URL (for browser iframe embed)
|
|
AP_FRONTEND_URL=http://localhost:8090
|
|
# Internal URL (for Django API calls within Docker network)
|
|
AP_INTERNAL_URL=http://activepieces:80
|
|
|
|
# JWT secret - MUST match between Activepieces and Django for embedding to work
|
|
AP_JWT_SECRET=aa8b396f27cee3d5d07961ca194e69889db699000bd998317b18402ad3358429
|
|
AP_ENCRYPTION_KEY=623d1d2592c77b81d16b060446288b32
|
|
|
|
# Project/Platform IDs (from Activepieces setup - visible in URL when logged in)
|
|
AP_DEFAULT_PROJECT_ID=bbwbSJskSKWTVSIJvvmrQ
|
|
AP_PLATFORM_ID=oOtq0ptJzbmMgzGn0RcU8
|
|
|
|
# Database (using same PostgreSQL as SmoothSchedule)
|
|
AP_POSTGRES_HOST=postgres
|
|
AP_POSTGRES_PORT=5432
|
|
AP_POSTGRES_DATABASE=activepieces
|
|
AP_POSTGRES_USERNAME=FDuVLuQjfpYzGizTmaTavMcaimqpCMRM
|
|
AP_POSTGRES_PASSWORD=Liqdsbh6vLi5vCvvmdRUrwJWIXwNgL0MP4lV4EHaR4qM7ouzBObM5imX4bKEjgBo
|
|
|
|
# Redis
|
|
AP_REDIS_HOST=redis
|
|
AP_REDIS_PORT=6379
|
|
|
|
# AI Copilot
|
|
AP_OPENAI_API_KEY=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
|
|
|
|
# Execution
|
|
AP_EXECUTION_MODE=UNSANDBOXED
|
|
AP_TELEMETRY_ENABLED=false
|
|
|
|
# Pieces Configuration
|
|
# CLOUD_AND_DB: Fetch pieces from cloud registry and local database
|
|
AP_PIECES_SOURCE=CLOUD_AND_DB
|
|
# OFFICIAL_AUTO: Automatically sync official pieces metadata from cloud
|
|
AP_PIECES_SYNC_MODE=OFFICIAL_AUTO
|
|
|
|
# Embedding
|
|
AP_EMBEDDING_ENABLED=true
|
|
|
|
# Development Pieces (comma-separated list of piece names to load from dist/packages/pieces)
|
|
# The build watcher may fail without nx, but the piece should still load from pre-built dist
|
|
AP_DEV_PIECES=smoothschedule,python-code,ruby-code
|
|
|
|
# Verdaccio - set to 'none' to skip Verdaccio (pieces are pre-built in image)
|
|
VERDACCIO_URL=none
|
|
|
|
# Templates Source URL - fetch official Activepieces templates from cloud
|
|
AP_TEMPLATES_SOURCE_URL=https://cloud.activepieces.com/api/v1/templates
|