import { sql } from '@vercel/postgres';
const { rows } = await sql`
INSERT INTO products (name)
VALUES (${formData.get('name')})
`;
Presumably authentication is handled transparently? I really like that - reminds me of Deno's new KV cloud stuff too.Is that done with environment variables? I'd want a way to tap into that from Python code as well.