Files
fatemaster/backend/FateMaster.API/appsettings.json
jiangdong d81cf186b0 init
2025-10-03 11:24:11 +08:00

35 lines
695 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Server=localhost;Port=3306;Database=fatemaster;User=root;Password=your_password;"
},
"PaymentSettings": {
"Alipay": {
"AppId": "",
"PrivateKey": "",
"PublicKey": ""
},
"PayPal": {
"ClientId": "",
"ClientSecret": "",
"Mode": "sandbox"
},
"Stripe": {
"SecretKey": "",
"PublishableKey": ""
}
},
"AISettings": {
"Provider": "OpenAI",
"ApiKey": "",
"Model": "gpt-4",
"BaseUrl": "https://api.openai.com/v1"
}
}