Good: "Create a certificate using template 'course-completion' for John Smith who completed 'Python Programming' on January 30, 2024"Better: "Use the course-completion template to generate a certificate with these details:- Student: John Smith - Course: Python Programming- Completion Date: January 30, 2024- Grade: A+"
// Proper server-side usageconst apiKey = process.env.PEEDIEF_API_KEY;if (!apiKey) { throw new Error('PEEDIEF_API_KEY environment variable is required');}// NEVER do this in client-side code:// const apiKey = 'pk_live_1234567890'; // ❌ NEVER!