mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-03-07 14:23:08 +00:00
feat: add appsmith low-code platform for internal tools
adds appsmith as an optional service with caddy reverse proxy, auto-generated encryption secrets, wizard selection, welcome page integration, update preview support, and final report output. bumps version to 1.3.0.
This commit is contained in:
@@ -74,6 +74,8 @@ USER_INPUT_VARS=(
|
||||
# Variables to generate: varName="type:length"
|
||||
# Types: password (alphanum), secret (base64), hex, base64, alphanum
|
||||
declare -A VARS_TO_GENERATE=(
|
||||
["APPSMITH_ENCRYPTION_PASSWORD"]="password:32"
|
||||
["APPSMITH_ENCRYPTION_SALT"]="password:32"
|
||||
["CLICKHOUSE_PASSWORD"]="password:32"
|
||||
["COMFYUI_PASSWORD"]="password:32" # Added ComfyUI basic auth password
|
||||
["DASHBOARD_PASSWORD"]="password:32" # Supabase Dashboard
|
||||
|
||||
@@ -38,6 +38,7 @@ current_profiles_for_matching=",$CURRENT_PROFILES_VALUE,"
|
||||
# --- Define available services and their descriptions ---
|
||||
# Base service definitions (tag, description)
|
||||
base_services_data=(
|
||||
"appsmith" "Appsmith (Low-code Platform for Internal Tools & Dashboards)"
|
||||
"cloudflare-tunnel" "Cloudflare Tunnel (Zero-Trust Secure Access)"
|
||||
"comfyui" "ComfyUI (Node-based Stable Diffusion UI)"
|
||||
"crawl4ai" "Crawl4ai (Web Crawler for AI)"
|
||||
|
||||
@@ -79,6 +79,9 @@ echo ""
|
||||
echo -e " ${WHITE}2.${NC} Store the Welcome Page credentials securely"
|
||||
echo ""
|
||||
echo -e " ${WHITE}3.${NC} Configure services as needed:"
|
||||
if is_profile_active "appsmith"; then
|
||||
echo -e " ${GREEN}*${NC} ${WHITE}Appsmith${NC}: Create admin account on first login (may take a few minutes to start)"
|
||||
fi
|
||||
if is_profile_active "n8n"; then
|
||||
echo -e " ${GREEN}*${NC} ${WHITE}n8n${NC}: Complete first-run setup with your email"
|
||||
fi
|
||||
|
||||
@@ -27,6 +27,19 @@ GENERATED_AT=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
|
||||
# Build services array - each entry is a formatted JSON block
|
||||
declare -a SERVICES_ARRAY
|
||||
|
||||
# Appsmith
|
||||
if is_profile_active "appsmith"; then
|
||||
SERVICES_ARRAY+=(" \"appsmith\": {
|
||||
\"hostname\": \"$(json_escape "$APPSMITH_HOSTNAME")\",
|
||||
\"credentials\": {
|
||||
\"note\": \"Create your account on first login\"
|
||||
},
|
||||
\"extra\": {
|
||||
\"docs\": \"https://docs.appsmith.com\"
|
||||
}
|
||||
}")
|
||||
fi
|
||||
|
||||
# n8n
|
||||
if is_profile_active "n8n"; then
|
||||
N8N_WORKER_COUNT_VAL="${N8N_WORKER_COUNT:-1}"
|
||||
@@ -519,6 +532,16 @@ if is_profile_active "databasus"; then
|
||||
((STEP_NUM++))
|
||||
fi
|
||||
|
||||
# Set up Appsmith (if appsmith active)
|
||||
if is_profile_active "appsmith"; then
|
||||
QUICK_START_ARRAY+=(" {
|
||||
\"step\": $STEP_NUM,
|
||||
\"title\": \"Set up Appsmith\",
|
||||
\"description\": \"Create your admin account and build your first app\"
|
||||
}")
|
||||
((STEP_NUM++))
|
||||
fi
|
||||
|
||||
# Step 4: Monitor system (if monitoring active)
|
||||
if is_profile_active "monitoring"; then
|
||||
QUICK_START_ARRAY+=(" {
|
||||
|
||||
@@ -134,6 +134,11 @@ if is_profile_active "databasus"; then
|
||||
check_image_update "databasus" "databasus/databasus:latest"
|
||||
fi
|
||||
|
||||
if is_profile_active "appsmith"; then
|
||||
log_subheader "Appsmith"
|
||||
check_image_update "appsmith" "appsmith/appsmith-ce:release"
|
||||
fi
|
||||
|
||||
# Summary
|
||||
log_divider
|
||||
echo ""
|
||||
|
||||
Reference in New Issue
Block a user