From e6aebd5b2e21bdc6bd4e49a5319422ccd411370a Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Sat, 27 Dec 2025 19:29:06 +0100 Subject: [PATCH] docs: add Stripe configuration to .env.example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .env.example | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 4b92403e..8e6b195a 100644 --- a/.env.example +++ b/.env.example @@ -50,4 +50,11 @@ AUTO_PROVISION_SSL=False # Set to True if using automated SSL # DNS verification DNS_VERIFICATION_PREFIX=_wizamart-verify -DNS_VERIFICATION_TTL=3600 \ No newline at end of file +DNS_VERIFICATION_TTL=3600 + +# Stripe Billing Configuration +# Get your keys from https://dashboard.stripe.com/apikeys +STRIPE_SECRET_KEY=sk_test_your_secret_key_here +STRIPE_PUBLISHABLE_KEY=pk_test_your_publishable_key_here +STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here +STRIPE_TRIAL_DAYS=30 \ No newline at end of file