feat: new secrets

This commit is contained in:
2026-07-20 15:23:16 +02:00
parent 5a6833c1a2
commit 3fff09ba81
18 changed files with 121 additions and 109 deletions
+15
View File
@@ -0,0 +1,15 @@
const { defineSecret } = require('firebase-functions/params')
const GEMINI_API_KEY = defineSecret('GEMINI_API_KEY')
const SUNO_API_KEY = defineSecret('SUNO_API_KEY')
const RESEND_API_KEY = defineSecret('RESEND_API_KEY')
const STRIPE_SECRET_KEY = defineSecret('STRIPE_SECRET_KEY')
const STRIPE_WEBHOOK_SECRET = defineSecret('STRIPE_WEBHOOK_SECRET')
module.exports = {
GEMINI_API_KEY,
SUNO_API_KEY,
RESEND_API_KEY,
STRIPE_SECRET_KEY,
STRIPE_WEBHOOK_SECRET,
}