Seed Vercel Postgres with large dataset
mainThe data/data.zip file contains a data.sql file with the full schema and over 1,000,000 products. Because this data exceeds the free tier limits for Neon on Vercel, you must seed it manually using psql:
- Unzip
data.zipto obtaindata.sql. - Run the following command using your connection string:
psql "YOUR_CONNECTION_STRING" -f data/data.sql