-
Install Vercel CLI (if not already installed):
npm i -g vercel
-
Login to Vercel:
vercel login
-
Deploy:
vercel
-
Set Environment Variables (if using AI features):
vercel env add OPENAI_API_KEY
-
Deploy to Production:
vercel --prod
- ✅
vercel.json- Vercel configuration - ✅
api/index.py- Serverless function entry point - ✅
.vercelignore- Files to exclude - ✅
VERCEL_DEPLOYMENT.md- Detailed deployment guide
- Files are ephemeral - generated claims/dossiers won't persist
- Function timeout: 60 seconds (Pro plan) or 10 seconds (Free)
- Consider external storage (S3, database) for production
- Push code to GitHub
- Go to https://vercel.com/new
- Import your repository
- Vercel will auto-detect Python
- Add environment variables in dashboard
- Deploy!
See VERCEL_DEPLOYMENT.md for detailed instructions.