BCards/tests/BCards.Tests/appsettings.Testing.json
2025-07-14 23:21:25 -03:00

39 lines
975 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"
}
}
}