- Add Activepieces fork with SmoothSchedule custom piece - Create integrations app with Activepieces service layer - Add embed token endpoint for iframe integration - Create Automations page with embedded workflow builder - Add sidebar visibility fix for embed mode - Add list inactive customers endpoint to Public API - Include SmoothSchedule triggers: event created/updated/cancelled - Include SmoothSchedule actions: create/update/cancel events, list resources/services/customers 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
1.0 KiB
Bash
26 lines
1.0 KiB
Bash
#!/bin/sh
|
|
|
|
# Set default values if not provided
|
|
export AP_APP_TITLE="${AP_APP_TITLE:-Activepieces}"
|
|
export AP_FAVICON_URL="${AP_FAVICON_URL:-https://cdn.activepieces.com/brand/favicon.ico}"
|
|
|
|
# Debug: Print environment variables
|
|
echo "AP_APP_TITLE: $AP_APP_TITLE"
|
|
echo "AP_FAVICON_URL: $AP_FAVICON_URL"
|
|
|
|
# Process environment variables in index.html BEFORE starting services
|
|
envsubst '${AP_APP_TITLE} ${AP_FAVICON_URL}' < /usr/share/nginx/html/index.html > /usr/share/nginx/html/index.html.tmp && \
|
|
mv /usr/share/nginx/html/index.html.tmp /usr/share/nginx/html/index.html
|
|
|
|
|
|
# Start Nginx server
|
|
nginx -g "daemon off;" &
|
|
|
|
# Start backend server
|
|
if [ "$AP_CONTAINER_TYPE" = "APP" ] && [ "$AP_PM2_ENABLED" = "true" ]; then
|
|
echo "Starting backend server with PM2 (APP mode)"
|
|
pm2-runtime start dist/packages/server/api/main.cjs --name "activepieces-app" --node-args="--enable-source-maps" -i 0
|
|
else
|
|
echo "Starting backend server with Node.js (WORKER mode or default)"
|
|
node --enable-source-maps dist/packages/server/api/main.cjs
|
|
fi |