Files
Nexus.Reader/src/NexusReader.Web.New/appsettings.json
T

35 lines
931 B
JSON

{
"Stripe": {
"ApiKey": "sk_test_placeholder",
"WebhookSecret": "whsec_placeholder",
"ProProductId": "prod_Pro123",
"BasicProductId": "prod_Basic456",
"FreeProductId": "prod_Free789"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"SqliteConnection": "Data Source=nexus.db",
"PostgresConnection": "Host=localhost;Database=nexus_db;Username=nexus_user;Password=nexus_password"
},
"Authentication": {
"Google": {
"ClientId": "YOUR_CLIENT_ID.apps.googleusercontent.com",
"ClientSecret": "YOUR_CLIENT_SECRET"
}
},
"Ai": {
"Google": {
"ApiKey": "PLACEHOLDER",
"Model": "gemini-2.5-flash-lite",
"MaxInputTokens": 15000,
"MaxOutputTokens": 8192
}
},
"ApiBaseUrl": "http://localhost:5000"
}