| name | gamma-deploy-integration |
| description | Deploy Gamma-integrated applications to production environments.
Use when deploying to Vercel, AWS, GCP, or other cloud platforms
with proper secret management and configuration.
Trigger with phrases like "gamma deploy", "gamma production",
"gamma vercel", "gamma AWS", "gamma cloud deployment".
|
| allowed-tools | Read, Write, Edit, Bash(vercel:*), Bash(aws:*), Bash(gcloud:*) |
| version | 1.13.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","gamma","deployment"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Gamma Deploy Integration
Overview
Deploy Gamma-integrated applications to various cloud platforms with proper configuration and secret management.
Prerequisites
- Completed CI integration
- Cloud platform account (Vercel, AWS, or GCP)
- Production Gamma API key
Instructions
Vercel Deployment
Step 1: Configure Vercel Project
set -euo pipefail
npm i -g vercel
vercel link
vercel env add GAMMA_API_KEY production
Step 2: Create vercel.json
{
"framework": "nextjs",
"buildCommand": "npm run build",
"env": {
"GAMMA_API_KEY": "@gamma_api_key"
},
"functions": {
"api/**/*.ts": {
"maxDuration": 30
}
}
}
Step 3: Deploy
vercel
vercel --prod
AWS Lambda Deployment
Step 1: Store Secret in AWS Secrets Manager
aws secretsmanager create-secret \
--name gamma/api-key \
--secret-string