Set Up Database
ColdConvert requires a PostgreSQL database to store your leads and campaign data. Choose between Vercel Postgres or Neon.
Overview
ColdConvert stores all your data in a PostgreSQL database, including leads, campaigns, email templates, and analytics. Both Vercel Postgres and Neon offer generous free tiers perfect for getting started.
Option 1: Vercel Postgres (Recommended)
Vercel Postgres seamlessly integrates with your Vercel deployment and offers the easiest setup experience.
🚀 Vercel Postgres Benefits
Free Tier Includes:
- • 60 hours compute per month
- • 256MB storage
- • Automatic backups
- • Easy environment variable setup
Perfect For:
- • Getting started quickly
- • Small to medium campaigns
- • Seamless Vercel integration
- • Automatic scaling
Option 2: Neon Database
Neon is a serverless PostgreSQL service with excellent performance and branching capabilities.
⚡ Neon Benefits
Free Tier Includes:
- • 3GB storage
- • Branching support
- • Auto-scaling
- • Point-in-time recovery
Perfect For:
- • Development and testing
- • Larger datasets
- • Advanced features
- • Cost optimization
Get Your Connection String
For Vercel Postgres:
1. Go to your Vercel dashboard
2. Navigate to Storage > Postgres
3. Click on your database
4. Copy the connection string
5. Save it for the environment variables tutorial
For Neon:
1. Go to your Neon dashboard
2. Click on your project
3. Go to Connection Details
4. Copy the connection string
5. Save it for the environment variables tutorial
# Vercel Postgres format:
postgresql://username:password@host:port/database
# Neon format:
postgresql://username:password@host/database?sslmode=require
# Save this connection string - you'll need it in the next tutorial
Next Tutorial
Configure Email Service
Now that you have your database set up, let's configure Resend to handle email delivery for your campaigns.