- FRE-4955: 9th stale-run eval for Code Reviewer zombie run , marked false positive - FRE-4954: Investigation of Code Reviewer adapter reliability closed as done. Root cause: no heartbeat/adapter config. Fix tracked in FRE-4956 (CEO) - Broader CTO oversight: Senior Engineer bottleneck (19 in_review), Code Reviewer ghost runs awaiting FRE-4956 Co-Authored-By: Paperclip <noreply@paperclip.ing>
2.0 KiB
2.0 KiB
Vercel Project Setup for AudiobookPipeline
Issue: FRE-4678
Overview
Create Vercel project for AudiobookPipeline web app and configure all required environment variables.
Environment Variables
Database (Turso)
TURSO_DATABASE_URL- Turso database connection URLTURSO_AUTH_TOKEN- Turso authentication token
Authentication (Clerk)
CLERK_SECRET_KEY- Clerk secret key for server-side operationsVITE_CLERK_PUBLISHABLE_KEY- Clerk publishable key for client-side operations
Payments (Stripe)
STRIPE_SECRET_KEY- Stripe secret key for server-side operationsVITE_STRIPE_PUBLISHABLE_KEY- Stripe publishable key for client-side operationsSTRIPE_PRICE_ID_STANDARD- Stripe price ID for Standard tierSTRIPE_PRICE_ID_UNLIMITED- Stripe price ID for Unlimited tier
Storage (S3)
S3_ENDPOINT- S3 endpoint URLS3_ACCESS_KEY- S3 access key IDS3_SECRET_KEY- S3 secret access keyS3_BUCKET- S3 bucket name
Application
APP_URL- Application URL (Vercel deployment URL)
Build Configuration
vercel.json
{
"buildCommand": "npm run build",
"outputDirectory": "dist",
"devCommand": "npm run dev",
"installCommand": "npm install",
"framework": "vite",
"regions": ["iad"]
}
Setup Steps
- ✅ Create
vercel.jsonwith build configuration - ✅ Create
.env.localwith environment variable placeholders - ✅ Create
scripts/setup.shautomation script - ⏳ Run setup script to create Vercel project
- ⏳ Replace placeholder values with actual credentials
- ⏳ Deploy and verify build completes successfully
Next Actions
- Run
./scripts/setup.shto create the Vercel project - Update
.env.localwith actual credential values - Deploy to verify the configuration works
Notes
- The setup script handles Vercel CLI installation if not present
- Environment variables are set across all environments (production, development, preview)
- The Vite framework is configured for optimal build performance