salesforce-deploy-integration

Featured

Deploy Salesforce-connected applications to Heroku, Vercel, and Cloud Run with proper credential management. Use when deploying Salesforce-powered applications to production, configuring platform-specific secrets, or setting up Heroku Connect. Trigger with phrases like "deploy salesforce app", "salesforce Heroku", "salesforce production deploy", "salesforce Cloud Run", "Heroku Connect".

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

# Salesforce Deploy Integration ## Overview Deploy Salesforce-connected Node.js applications to Heroku (native SF integration), Vercel, or Cloud Run with JWT authentication and proper secrets management. ## Prerequisites - Salesforce Connected App with JWT Bearer flow - RSA key pair for server-to-server auth - Platform CLI installed (heroku, vercel, or gcloud) - Application tested against sandbox ## Instructions ### Heroku Deployment (Recommended for Salesforce) Heroku has native Salesforce integration via Heroku Connect (bi-directional data sync). ```bash # Create Heroku app heroku create my-sf-app # Set Salesforce credentials as config vars heroku config:set SF_LOGIN_URL=https://login.salesforce.com heroku config:set SF_CLIENT_ID=3MVG9... heroku config:set SF_USERNAME=integration@yourcompany.com heroku config:set SF_JWT_KEY="$(cat server.key)" # Deploy git push heroku main # Optional: Add Heroku Connect for bi-directional sync heroku addons:create herokuconnect:demo heroku connect:authorize # Map sObjects: Account, Contact, Opportunity → Postgres tables ``` ### Vercel Deployment (Serverless) ```bash # Add Salesforce secrets vercel env add SF_LOGIN_URL production vercel env add SF_CLIENT_ID production vercel env add SF_USERNAME production vercel env add SF_JWT_KEY production # Paste private key content # Deploy vercel --prod ``` ```json { "functions": { "api/**/*.ts": { "maxDuration": 30 } } } ``` ```typescript // api/salesforce/accounts.ts —...

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

salesloft-deploy-integration

Deploy SalesLoft integrations to Vercel, Fly.io, and Cloud Run. Use when deploying SalesLoft-powered apps to production, configuring platform secrets, or setting up webhook endpoints. Trigger: "deploy salesloft", "salesloft Vercel", "salesloft Cloud Run".

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
AI & Automation Solid

webflow-deploy-integration

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-deploy-integration

Deploy Shopify apps to Vercel, Fly.io, Railway, and Cloud Run with proper environment configuration. Use when deploying Shopify-powered applications to production, configuring platform-specific secrets, or setting up hosting. Trigger with phrases like "deploy shopify", "shopify hosting", "shopify Vercel", "shopify production deploy", "shopify Fly.io".

2,266 Updated today
jeremylongshore
AI & Automation Featured

adobe-deploy-integration

Deploy Adobe-powered applications to Vercel, Cloud Run, and Adobe App Builder with proper credential injection and health monitoring. Use when deploying Adobe API integrations to production platforms. Trigger with phrases like "deploy adobe", "adobe Vercel", "adobe Cloud Run", "adobe App Builder deploy", "adobe production deploy".

2,266 Updated today
jeremylongshore