Deployment Guide
Deploy PrepTalk to production.
Deployment
You can deploy PrepTalk to any platform that supports Node.js (Vercel, AWS, DigitalOcean).
Vercel (Recommended)
- Push your code to GitHub.
- Import the project in Vercel.
- Add Environment Variables:
DATABASE_URLOPENAI_API_KEYSENDGRID_API_KEYNEXT_PUBLIC_APP_URL
- Click Deploy.
Docker
We provide a Dockerfile for containerized deployment.
FROM node:18-alpine
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
CMD ["npm", "start"]
