All checks were successful
BCards Deployment Pipeline / Run Tests (push) Successful in 4s
BCards Deployment Pipeline / PR Validation (push) Has been skipped
BCards Deployment Pipeline / Build and Push Image (push) Successful in 15m22s
BCards Deployment Pipeline / Deploy to Production (ARM - OCI) (push) Successful in 1m54s
BCards Deployment Pipeline / Deploy to Test (x86 - Local) (push) Has been skipped
BCards Deployment Pipeline / Cleanup Old Resources (push) Has been skipped
BCards Deployment Pipeline / Deployment Summary (push) Successful in 0s
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
987 B
JSON
27 lines
987 B
JSON
{
|
|
"// 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"
|
|
]
|
|
} |