webflow-multi-env-setup

Solid

Configure Webflow across development, staging, and production environments with per-environment API tokens, site IDs, and secret management via Vault/AWS/GCP. Trigger with phrases like "webflow environments", "webflow staging", "webflow dev prod", "webflow environment setup", "webflow config by env".

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 Multi-Environment Setup ## Overview Configure Webflow Data API v2 integrations across development, staging, and production with separate API tokens, site IDs, and secret management. Each environment targets a different Webflow site for complete isolation. ## Prerequisites - Separate Webflow sites for each environment (or at minimum, separate API tokens) - Secret management solution (Vault, AWS Secrets Manager, or GCP Secret Manager) - CI/CD pipeline with environment variable support ## Environment Strategy | Environment | Webflow Site | API Token | CMS Data | Purpose | |-------------|-------------|-----------|----------|---------| | Development | Dev site | Dev token | Test/seed data | Local development | | Staging | Staging site | Staging token | Copy of prod data | Pre-prod validation | | Production | Production site | Prod token | Real data | Live traffic | ## Instructions ### Step 1: Environment Configuration ```typescript // src/config/webflow.ts type Environment = "development" | "staging" | "production"; interface WebflowEnvConfig { accessToken: string; siteId: string; maxRetries: number; webhookSecret: string; debug: boolean; } function detectEnvironment(): Environment { const env = process.env.NODE_ENV || "development"; const valid: Environment[] = ["development", "staging", "production"]; return valid.includes(env as Environment) ? (env as Environment) : "development"; } export function getWebflowConfig(): WebflowEnvConfig { c...

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

fireflies-multi-env-setup

Configure Fireflies.ai across dev, staging, and production with isolated API keys. Use when setting up multi-environment deployments, managing per-env secrets, or implementing environment-specific Fireflies configurations. Trigger with phrases like "fireflies environments", "fireflies staging", "fireflies dev prod", "fireflies environment setup", "fireflies config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-multi-env-setup

Configure HubSpot across development, staging, and production environments. Use when setting up per-environment HubSpot portals, configuring separate access tokens, or implementing environment isolation for HubSpot integrations. Trigger with phrases like "hubspot environments", "hubspot staging", "hubspot dev prod", "hubspot test account", "hubspot config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-multi-env-setup

Configure Klaviyo across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment API keys, or implementing environment-specific Klaviyo configurations. Trigger with phrases like "klaviyo environments", "klaviyo staging", "klaviyo dev prod", "klaviyo environment setup", "klaviyo config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

figma-multi-env-setup

Configure Figma API access across dev, staging, and production environments. Use when setting up per-environment tokens, managing multiple Figma files, or isolating development from production Figma resources. Trigger with phrases like "figma environments", "figma staging", "figma dev prod", "figma environment config".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-multi-env-setup

Configure Shopify apps across development, staging, and production environments with separate stores, API credentials, and app instances. Trigger with phrases like "shopify environments", "shopify staging", "shopify dev vs prod", "shopify multi-store", "shopify environment setup".

2,266 Updated today
jeremylongshore