BCards/tests/BCards.Tests/appsettings.Testing.json
Ricardo Carneiro 3d2ce1f8cf
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
fix: Increase session timeout to 7 days and set SameSite=None for Cloudflare compatibility
🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-18 12:32:42 -03:00

39 lines
1013 B
JSON

{
"ConnectionStrings": {
"DefaultConnection": "mongodb://localhost:27017/bcards_test"
},
"MongoDb": {
"ConnectionString": "mongodb://localhost:27017",
"DatabaseName": "bcards_test"
},
"Stripe": {
"PublishableKey": "pk_test_fake_key_for_testing",
"SecretKey": "sk_test_fake_key_for_testing",
"WebhookSecret": "whsec_fake_webhook_secret_for_testing"
},
"Authentication": {
"Google": {
"ClientId": "fake-google-client-id",
"ClientSecret": "fake-google-client-secret"
},
"Microsoft": {
"ClientId": "fake-microsoft-client-id",
"ClientSecret": "fake-microsoft-client-secret"
}
},
"SendGrid": {
"ApiKey": "fake-sendgrid-api-key"
},
"Moderation": {
"RequireApproval": false,
"AuthKey": "test-moderation-key",
"MaxPendingPages": 1000
},
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft.AspNetCore": "Warning",
"BCards": "Information"
}
}
}