elevenlabs-deploy-integration

Featured

Deploy ElevenLabs TTS applications to Vercel, Fly.io, and Cloud Run. Use when deploying ElevenLabs-powered apps to production, configuring platform-specific secrets, or setting up serverless TTS. Trigger: "deploy elevenlabs", "elevenlabs Vercel", "elevenlabs Cloud Run", "elevenlabs Fly.io", "elevenlabs serverless", "host TTS API".

DevOps & Infrastructure 2,274 stars 319 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

# ElevenLabs Deploy Integration ## Overview Deploy ElevenLabs TTS/voice applications to cloud platforms. Covers Vercel (serverless), Fly.io (containers), and Google Cloud Run with proper secrets management, timeout configuration, and streaming support. ## Prerequisites - ElevenLabs API key for production - Platform CLI installed (`vercel`, `fly`, or `gcloud`) - Application code tested locally ## Instructions ### Vercel Deployment (Serverless) **Key constraint:** Vercel functions have a 10-second timeout on Hobby (30s on Pro). Use Flash model for speed. ```bash # Set secrets vercel env add ELEVENLABS_API_KEY production vercel env add ELEVENLABS_API_KEY preview # Deploy vercel --prod ``` **API Route (Next.js / Vercel):** ```typescript // app/api/tts/route.ts import { ElevenLabsClient } from "@elevenlabs/elevenlabs-js"; import { NextResponse } from "next/server"; export const runtime = "nodejs"; export const maxDuration = 30; // Vercel Pro max const client = new ElevenLabsClient(); export async function POST(req: Request) { const { text, voiceId = "21m00Tcm4TlvDq8ikWAM" } = await req.json(); if (!text || text.length > 5000) { return NextResponse.json( { error: "Text required, max 5000 characters" }, { status: 400 } ); } try { const audio = await client.textToSpeech.convert(voiceId, { text, model_id: "eleven_flash_v2_5", // Fast for serverless output_format: "mp3_22050_32", voice_settings: { stability...

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

elevenlabs-prod-checklist

Execute ElevenLabs production deployment checklist with health checks and rollback. Use when deploying TTS/voice integrations to production, preparing for launch, or implementing go-live procedures for ElevenLabs-powered apps. Trigger: "elevenlabs production", "deploy elevenlabs", "elevenlabs go-live", "elevenlabs launch checklist", "production TTS".

2,274 Updated today
jeremylongshore
AI & Automation Featured

cohere-deploy-integration

Deploy Cohere-powered applications to Vercel, Fly.io, and Cloud Run. Use when deploying Cohere API v2 apps to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy cohere", "cohere Vercel", "cohere production deploy", "cohere Cloud Run", "cohere Fly.io".

2,274 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,274 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,274 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,274 Updated today
jeremylongshore