import { sql } from '@vercel/postgres'; const { rows } = await sql` INSERT INTO products (name) VALUES (${formData.get('name')}) `;
Is that done with environment variables? I'd want a way to tap into that from Python code as well.