webflow-deploy-integration

Solid

Deploy Webflow-powered applications to Vercel, Fly.io, and Google Cloud Run with proper secrets management and Webflow-specific health checks. Trigger with phrases like "deploy webflow", "webflow Vercel", "webflow production deploy", "webflow Cloud Run", "webflow Fly.io".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Webflow Deploy Integration ## Overview Deploy Webflow Data API v2 integrations to Vercel, Fly.io, or Google Cloud Run with secure token management, health checks, and webhook endpoint configuration. ## Prerequisites - Working Webflow integration (tested locally) - Production API token with minimal scopes - Platform CLI installed (`vercel`, `fly`, or `gcloud`) ## Instructions ### Vercel Deployment ```bash # Store Webflow secrets in Vercel vercel env add WEBFLOW_API_TOKEN production vercel env add WEBFLOW_SITE_ID production vercel env add WEBFLOW_WEBHOOK_SECRET production # Link and deploy vercel link vercel --prod ``` ```json // vercel.json { "env": { "WEBFLOW_API_TOKEN": "@webflow-api-token", "WEBFLOW_SITE_ID": "@webflow-site-id" }, "functions": { "api/**/*.ts": { "maxDuration": 30 } }, "headers": [ { "source": "/api/webhooks/webflow", "headers": [ { "key": "Access-Control-Allow-Origin", "value": "https://api.webflow.com" } ] } ] } ``` Vercel serverless function for webhook endpoint: ```typescript // api/webhooks/webflow.ts (Vercel Edge/Serverless) import type { VercelRequest, VercelResponse } from "@vercel/node"; import crypto from "crypto"; export default async function handler(req: VercelRequest, res: VercelResponse) { if (req.method !== "POST") { return res.status(405).json({ error: "Method not allowed" }); } // Verify webhook signature const signature = req.headers["x-webflow-s...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

figma-deploy-integration

Deploy Figma-powered applications to Vercel, Cloud Run, and Fly.io. Use when deploying webhook receivers, design token APIs, or Figma-connected web apps to production platforms. Trigger with phrases like "deploy figma", "figma Vercel", "figma production deploy", "figma Cloud Run".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

fireflies-deploy-integration

Deploy Fireflies.ai webhook receivers and GraphQL clients to Vercel, Docker, and Cloud Run. Use when deploying Fireflies.ai-powered applications to production, configuring platform-specific secrets, or hosting webhook endpoints. Trigger with phrases like "deploy fireflies", "fireflies Vercel", "fireflies production deploy", "fireflies Cloud Run", "fireflies Docker".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-deploy-integration

Deploy Klaviyo integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying Klaviyo-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy klaviyo", "klaviyo Vercel", "klaviyo production deploy", "klaviyo Cloud Run", "klaviyo Fly.io".

2,266 Updated today
jeremylongshore
AI & Automation Featured

intercom-deploy-integration

Deploy Intercom integrations to Vercel, Fly.io, and Cloud Run with proper secrets. Use when deploying Intercom-powered applications to production, configuring platform-specific secrets, or setting up webhook endpoints. Trigger with phrases like "deploy intercom", "intercom Vercel", "intercom production deploy", "intercom Cloud Run", "intercom Fly.io".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-deploy-integration

Deploy HubSpot integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying HubSpot-powered applications, configuring platform secrets, or setting up deployment pipelines with HubSpot access tokens. Trigger with phrases like "deploy hubspot", "hubspot Vercel", "hubspot Cloud Run", "hubspot Fly.io", "hubspot production deploy".

2,266 Updated today
jeremylongshore