From c36710d56ca011e8ce510b857b895709597e9bdf Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 13 Oct 2025 08:49:36 +0000 Subject: [PATCH] chore: configure Stripe subscription price IDs for production MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added environment variables for Biblical Guide Premium subscription: - Monthly plan: $10/month (price_1SHhJDJN43EN3sSfzJ883lHA) - Yearly plan: $100/year (price_1SHhKEJN43EN3sSfXYyYStNS) Configuration includes: - Server-side price IDs for API routes - NEXT_PUBLIC_ prefixed IDs for client-side rendering - Both monthly and yearly billing options The subscription system is now fully configured and ready for production use. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .env.local | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.env.local b/.env.local index b371f77..53578ac 100644 --- a/.env.local +++ b/.env.local @@ -27,8 +27,18 @@ TRANSLATION_CODE=FIDELA # API Bible API_BIBLE_KEY=7b42606f8f809e155c9b0742c4f1849b -# Ollama (optional) -OLLAMA_API_URL=http://localhost:11434 +# Ollama (optional) - DISABLED to use Azure OpenAI embeddings +# OLLAMA_API_URL=http://localhost:11434 # WebSocket port -WEBSOCKET_PORT=3015 \ No newline at end of file +WEBSOCKET_PORT=3015 + +# Stripe +STRIPE_SECRET_KEY=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 +STRIPE_PUBLISHABLE_KEY=pk_live_H0pO0dWQR0QDqLybpwlR4nDl00UhzqVGnO +STRIPE_WEBHOOK_SECRET=whsec_9kVqP17aLh0fnU7oA7UApe2c4hKkXDYL +NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_live_H0pO0dWQR0QDqLybpwlR4nDl00UhzqVGnO +STRIPE_PREMIUM_MONTHLY_PRICE_ID=price_1SHhJDJN43EN3sSfzJ883lHA +STRIPE_PREMIUM_YEARLY_PRICE_ID=price_1SHhKEJN43EN3sSfXYyYStNS +NEXT_PUBLIC_STRIPE_PREMIUM_MONTHLY_PRICE_ID=price_1SHhJDJN43EN3sSfzJ883lHA +NEXT_PUBLIC_STRIPE_PREMIUM_YEARLY_PRICE_ID=price_1SHhKEJN43EN3sSfXYyYStNS \ No newline at end of file