BCards/src/BCards.Web/appsettings.json
2025-06-24 23:25:02 -03:00

48 lines
1.3 KiB
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"MongoDb": {
"ConnectionString": "mongodb://localhost:27017",
"DatabaseName": "BCardsDB"
},
"Stripe": {
"PublishableKey": "pk_test_your_publishable_key_here",
"SecretKey": "sk_test_your_secret_key_here",
"WebhookSecret": "whsec_your_webhook_secret_here"
},
"Authentication": {
"Google": {
"ClientId": "your_google_client_id",
"ClientSecret": "your_google_client_secret"
},
"Microsoft": {
"ClientId": "b411606a-e574-4f59-b7cd-10dd941b9fa3",
"ClientSecret": "T0.8Q~an.51iW1H0DVjL2i1bmSK_qTgVQOuEmapK"
}
},
"Plans": {
"Basic": {
"PriceId": "price_basic_monthly",
"Price": 9.90,
"MaxLinks": 5,
"Features": ["basic_themes", "simple_analytics"]
},
"Professional": {
"PriceId": "price_professional_monthly",
"Price": 24.90,
"MaxLinks": 15,
"Features": ["all_themes", "advanced_analytics", "custom_domain"]
},
"Premium": {
"PriceId": "price_premium_monthly",
"Price": 29.90,
"MaxLinks": -1,
"Features": ["custom_themes", "full_analytics", "multiple_domains", "priority_support"]
}
}
}