{ "// EXEMPLO - RENOMEAR PARA appsettings.Production.json": "Este arquivo mostra como configurar produção", "Stripe": { "// PARA TESTE ONLINE": { "PublishableKey": "pk_test_SUA_CHAVE_PUBLICA_AQUI", "SecretKey": "sk_test_SUA_CHAVE_SECRETA_AQUI", "WebhookSecret": "whsec_WEBHOOK_DO_SEU_SITE_AQUI", "Environment": "test" }, "// PARA PRODUÇÃO REAL": { "PublishableKey": "pk_live_SUA_CHAVE_LIVE_AQUI", "SecretKey": "sk_live_SUA_CHAVE_LIVE_AQUI", "WebhookSecret": "whsec_WEBHOOK_LIVE_AQUI", "Environment": "live" } }, "// INSTRUCOES": [ "1. Copie este arquivo para appsettings.Production.json", "2. Para TESTE ONLINE: use chaves pk_test_ e sk_test_", "3. Para PRODUÇÃO REAL: use chaves pk_live_ e sk_live_", "4. Configure webhook para https://bcards.site/api/stripe/webhook", "5. Modo Restrito no Stripe: desativar para permitir pagamentos públicos" ] }